From f659270a292d11638487f64c2fe959c6f135fd33 Mon Sep 17 00:00:00 2001 From: Marek Aufart Date: Mon, 24 Feb 2020 17:14:24 +0100 Subject: [PATCH 1/2] Update VCR Targeted refresh spec IDs Targeted refresh spec uses UUIDs of OpenStack objects. The testing OpenStack environment was moved, adjusting UUIDs to the new OpenStack installation. --- .../refresher_rhos_liberty_spec.rb | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/spec/models/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_spec.rb b/spec/models/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_spec.rb index 458229318..4e1ba25c3 100644 --- a/spec/models/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_spec.rb +++ b/spec/models/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_spec.rb @@ -56,7 +56,7 @@ context "targeted refresh" do it "will perform a targeted VM refresh against RHOS #{@environment}" do # EmsRefreshSpec-PoweredOn - vm_target = InventoryRefresh::Target.new(:manager => @ems, :association => :vms, :manager_ref => {:ems_ref => "8daeb8f2-3779-4331-a876-3806676f1fe1"}) + vm_target = InventoryRefresh::Target.new(:manager => @ems, :association => :vms, :manager_ref => {:ems_ref => "da40eae5-9021-4406-939e-d9dd9b528f3d"}) # Run twice to verify that a second run with existing data does not change anything. with_cassette("#{@environment}_vm_targeted_refresh", @ems) do EmsRefresh.refresh(vm_target) @@ -70,8 +70,8 @@ # stack1 stack_target = InventoryRefresh::Target.new(:manager => @ems, :association => :orchestration_stacks, - :manager_ref => {:ems_ref => "eca4b0d4-c342-4b89-94bb-fe66f001460b"}, - :options => {:tenant_id => "8eb4b49207904f6eb33283732571bc0e"}) + :manager_ref => {:ems_ref => "a2865569-94f8-42d0-84c3-4b59dd4dc745"}, + :options => {:tenant_id => "e9bb9a5ed00244e0b3c288ed495abbf9"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_stack_targeted_refresh", @ems) do EmsRefresh.refresh(stack_target) @@ -84,7 +84,7 @@ # EmsRefreshSpec-Project stack_target = InventoryRefresh::Target.new(:manager => @ems, :association => :cloud_tenants, - :manager_ref => {:ems_ref => "8eb4b49207904f6eb33283732571bc0e"}) + :manager_ref => {:ems_ref => "e9bb9a5ed00244e0b3c288ed495abbf9"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_tenant_targeted_refresh", @ems) do EmsRefresh.refresh(stack_target) @@ -97,32 +97,32 @@ it "will perform a targeted router refresh against RHOS #{@environment}" do router_target = InventoryRefresh::Target.new(:manager => @ems, :association => :network_routers, - :manager_ref => {:ems_ref => "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}) + :manager_ref => {:ems_ref => "f549eb23-42ae-4983-8ffd-2464b9997302"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_router_targeted_refresh", @ems) do EmsRefresh.refresh(router_target) expect(NetworkRouter.count).to eq(1) - router = NetworkRouter.find_by(:ems_ref => "cdbbd8a3-7ba1-4264-88a7-a1279558f77f") + router = NetworkRouter.find_by(:ems_ref => "f549eb23-42ae-4983-8ffd-2464b9997302") expect(router.ext_management_system).to eq(@ems.network_manager) end end end - # attached to 0c338e1b-b23c-41e8-8223-fc8086d24e96 + # attached to 2c17e2a5-bc80-48a3-bd46-d2e6b258cac0 it "will perform a targeted volume refresh against RHOS #{@environment}" do volume_target = InventoryRefresh::Target.new(:manager => @ems, :association => :cloud_volumes, - :manager_ref => {:ems_ref => "2042bbec-e245-405e-8e77-cde0205ab38e"}) + :manager_ref => {:ems_ref => "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_volume_targeted_refresh", @ems) do EmsRefresh.refresh(volume_target) expect(CloudVolume.count).to eq(1) - volume = CloudVolume.find_by(:ems_ref => "2042bbec-e245-405e-8e77-cde0205ab38e") + volume = CloudVolume.find_by(:ems_ref => "12a60717-cc9e-426d-82d6-7ac2e8eabd3a") expect(volume.ext_management_system).to eq(@ems.cinder_manager) expect(VmCloud.count).to eq(1) - vm = VmCloud.find_by(:ems_ref => "0c338e1b-b23c-41e8-8223-fc8086d24e96") + vm = VmCloud.find_by(:ems_ref => "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0") expect(vm.ext_management_system).to eq(@ems) expect(volume.vms.include?(vm)).to be true end @@ -132,13 +132,13 @@ it "will perform a targeted port refresh against RHOS #{@environment}" do port_target = InventoryRefresh::Target.new(:manager => @ems, :association => :network_ports, - :manager_ref => {:ems_ref => "0134788e-bb49-4327-8f26-5584d4426305"}) + :manager_ref => {:ems_ref => "04439a32-2c8b-495d-8ca2-aabfffca56ba"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_port_targeted_refresh", @ems) do EmsRefresh.refresh(port_target) expect(NetworkPort.count).to eq(1) - router = NetworkPort.find_by(:ems_ref => "0134788e-bb49-4327-8f26-5584d4426305") + router = NetworkPort.find_by(:ems_ref => "04439a32-2c8b-495d-8ca2-aabfffca56ba") expect(router.ext_management_system).to eq(@ems.network_manager) end end @@ -170,19 +170,19 @@ it "will reset the cache before collecting tenants during targeted refresh against RHOS #{@environment}" do volume_target = InventoryRefresh::Target.new(:manager => @ems, :association => :cloud_volumes, - :manager_ref => {:ems_ref => "2042bbec-e245-405e-8e77-cde0205ab38e"}) + :manager_ref => {:ems_ref => "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}) tenant_target = InventoryRefresh::Target.new(:manager => @ems, :association => :cloud_tenants, - :manager_ref => {:ems_ref => "66df12d5801449a2b529d3a1bbf279b0"}) + :manager_ref => {:ems_ref => "4f018636e6414466b02641748cd91484"}) 2.times do # Run twice to verify that a second run with existing data does not change anything with_cassette("#{@environment}_volume_targeted_refresh", @ems) do EmsRefresh.refresh([tenant_target, volume_target]) expect(CloudVolume.count).to eq(1) - volume = CloudVolume.find_by(:ems_ref => "2042bbec-e245-405e-8e77-cde0205ab38e") + volume = CloudVolume.find_by(:ems_ref => "12a60717-cc9e-426d-82d6-7ac2e8eabd3a") expect(CloudTenant.all.count).to eq(2) - expect(CloudTenant.find_by(:ems_ref => "8eb4b49207904f6eb33283732571bc0e")).to be_truthy - expect(CloudTenant.find_by(:ems_ref => "66df12d5801449a2b529d3a1bbf279b0")).to be_truthy + expect(CloudTenant.find_by(:ems_ref => "e9bb9a5ed00244e0b3c288ed495abbf9")).to be_truthy + expect(CloudTenant.find_by(:ems_ref => "4f018636e6414466b02641748cd91484")).to be_truthy end end end From e7ea3a1c6d5ea02519c53ce9333ab5f4e020af12 Mon Sep 17 00:00:00 2001 From: Marek Aufart Date: Tue, 25 Feb 2020 11:28:07 +0100 Subject: [PATCH 2/2] Update VCRs --- .../cloud_manager/refresher_rhos_liberty.yml | 17875 +++++++------ .../refresher_rhos_liberty_fast_refresh.yml | 8097 +++--- ..._rhos_liberty_network_targeted_refresh.yml | 20988 +++++++++------- ...her_rhos_liberty_port_targeted_refresh.yml | 3942 ++- ...r_rhos_liberty_router_targeted_refresh.yml | 2685 +- ...er_rhos_liberty_stack_targeted_refresh.yml | 3394 ++- ...r_rhos_liberty_tenant_targeted_refresh.yml | 2334 +- ...esher_rhos_liberty_vm_targeted_refresh.yml | 9485 +++---- ...r_rhos_liberty_volume_targeted_refresh.yml | 2293 +- 9 files changed, 38090 insertions(+), 33003 deletions(-) diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty.yml index 1f65a7c78..e1ce0fd9e 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:52 GMT + - Tue, 25 Feb 2020 08:09:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-ee26467a-f56c-42c2-a2b4-cc0007151657 + - req-9b3f587c-7c02-481b-b531-7fa6eb564c26 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:52.732334", "expires": - "2020-01-14T14:26:52Z", "id": "79d27949b46443d8bd05570d7864d054", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["2Vt5r48ATb-3jRDbtRWiIA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:25.576558", "expires": + "2020-02-25T09:09:25Z", "id": "cb5a78c57b1f461ba0bb5064a515857f", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["PkonRkNXRum37s9aF_0_MA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:52 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:25 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:26:52 GMT + - Tue, 25 Feb 2020 08:09:26 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,11 +114,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:27 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-availability-zone body: encoding: US-ASCII string: '' @@ -130,7 +130,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -143,15 +143,15 @@ http_interactions: Content-Length: - '97' X-Compute-Request-Id: - - req-9a8de695-7bc1-4cae-9fd3-54742de327f5 + - req-0abe5e06-4aa7-4cc9-ba05-fa971b56ef47 Date: - - Tue, 14 Jan 2020 13:26:52 GMT + - Tue, 25 Feb 2020 08:09:27 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "hosts": null, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:27 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -169,73 +169,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-14f9e188-b142-408f-b6d3-3c47d49eab9b + - req-9441ecc3-8197-49cd-9429-4f5cf2af55b9 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:53.158011", "expires": - "2020-01-14T14:26:53Z", "id": "d70d5a446793426a99a4d5be4321c75f", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["AbyxDG_WQiawCWCOrjKxSQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:28.705743", "expires": + "2020-02-25T09:09:28Z", "id": "747396cec8c544d2b28062bc9d63a737", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["Ih_dU5oJT-uRBV70OozMHg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:29 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone.json + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/os-availability-zone.json body: encoding: US-ASCII string: '' @@ -247,28 +247,28 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-464b3015-ecb5-48e3-aa26-867173c82252 + - req-670b9256-0217-4948-8512-a296e50bc540 Content-Type: - application/json Content-Length: - '82' X-Openstack-Request-Id: - - req-464b3015-ecb5-48e3-aa26-867173c82252 + - req-670b9256-0217-4948-8512-a296e50bc540 Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:30 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:30 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -286,13 +286,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a63c0aad-890a-407e-9c6f-7570114e6bc7 + - req-57cdfe5c-dc33-434c-8eef-fd4853cc9497 Content-Length: - '370' Connection: @@ -301,13 +301,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:53.516537", "expires": - "2020-01-14T14:26:53Z", "id": "43dd26509f214c308b0bbc8c9cc0d325", "audit_ids": - ["fZf2myHFT_6_x2uT0lCRLg"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:31.178631", "expires": + "2020-02-25T09:09:31Z", "id": "abac030d5ca04633843603063a1f5901", "audit_ids": + ["NFgzMPOiQpOSa6keKqgZig"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:31 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -322,20 +322,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43dd26509f214c308b0bbc8c9cc0d325 + - abac030d5ca04633843603063a1f5901 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c1413ce8-4ca2-42dc-aae4-f3330a5d1912 + - req-fb3db902-f0a5-4443-837d-a0d419fa63fe Content-Length: - '500' Connection: @@ -344,20 +344,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:32 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -369,69 +369,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:33 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a179b010-08db-4f93-8249-422e8984ed90 + - req-023d4daf-3266-4c52-b4f8-2816f400883d Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:53.641651", "expires": - "2020-01-14T14:26:53Z", "id": "43b328dd3ecc4ed99e70579a9f52f77a", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["ucii9EFtQwKa9A6fkC8hbw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:33.148915", "expires": + "2020-02-25T09:09:33Z", "id": "875f1afba5ff4168b2132ec6a3c72dbe", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["m53U4nLsSwekkN2IEZDYLQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:33 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -446,7 +446,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - 875f1afba5ff4168b2132ec6a3c72dbe response: status: code: 200 @@ -455,9 +455,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:33 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -465,14 +465,14 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:34 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -484,69 +484,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-147127d9-b596-416f-90eb-b61e4339c43f + - req-23e4d276-6ea5-4683-94a0-3e9395c4758e Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:53.750698", "expires": - "2020-01-14T14:26:53Z", "id": "e31a6a1de11c4b5ea1d7e57176ac1185", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["q-R-QWlkQYSPouWgi-6wlA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:35.051364", "expires": + "2020-02-25T09:09:35Z", "id": "e2e445c298a14cad9ccd8646c339006d", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["xQ-fdGZhQoGfEmV7lOqS2g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:35 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -561,7 +561,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - e2e445c298a14cad9ccd8646c339006d response: status: code: 200 @@ -570,9 +570,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:36 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -580,8 +580,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:36 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -599,69 +599,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-68a2829b-6668-4d9e-9e5b-c547c2eaf072 + - req-04681daf-4a58-4387-820a-eab099a9acf9 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:53.864286", "expires": - "2020-01-14T14:26:53Z", "id": "5bea490bd481402494b63e2a7ca66c22", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["niMOzAdoStWzzW-nAE932g"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:36.961170", "expires": + "2020-02-25T09:09:36Z", "id": "cb38714fa3a84dd88f7ce2b83d801be6", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["Tfqu4UOXRZmeUgO0txOXLA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:37 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -676,7 +676,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 response: status: code: 200 @@ -685,9 +685,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:38 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -695,11 +695,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:38 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -711,7 +711,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -722,31 +722,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-296379af-4290-4b26-bf34-f9b2bd3b18e7 + - req-b7a1f81e-519a-4324-9544-254ae597a381 Date: - - Tue, 14 Jan 2020 13:26:53 GMT + - Tue, 25 Feb 2020 08:09:39 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:32.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:44.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:53 GMT + "2020-02-25T08:09:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:39 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -758,7 +758,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -769,31 +769,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-43f5026c-ef1c-452e-b669-6947c6e813ba + - req-7bc8a268-4d2a-475c-a1fc-3d8be8bea783 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:39 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:32.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:44.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:40 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -805,7 +805,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -816,31 +816,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-491180c4-06a3-45f1-b4d1-60b254a8e165 + - req-1edaad7a-23b3-4c2c-ad78-7a5f01018d31 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:40 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:32.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:40 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -852,7 +852,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -863,31 +863,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-0284b6c5-1a4a-4b75-acdc-ca458f6e308f + - req-556e6b6d-810f-4d7f-89e5-216f4f01e613 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:41 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:32.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:41 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -899,7 +899,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -910,31 +910,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-5e326077-e76f-4c06-8c64-6839843cde87 + - req-9513a720-fdee-4d5a-b6b6-e8cc72a64b74 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:42 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:32.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:42 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -946,7 +946,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -957,31 +957,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-e3314ad9-5a0e-4d6b-aefd-ca0b33d04061 + - req-1cad1197-6c30-486d-bad3-d9980e028932 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:43 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:42.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:42.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -993,7 +993,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1004,31 +1004,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-95346c7e-039d-42b8-9ecb-bf194c813e3e + - req-a142ac51-847d-495b-92b3-7a16e38fc923 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:44 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:42.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:42.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:44 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -1040,7 +1040,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1051,31 +1051,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-967efd00-6eda-439b-ac28-ffe71358cb00 + - req-388e51e1-871d-459b-acd3-8cbf2912f103 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:45 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:09:44.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:26:53.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:26:52.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:09:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:09:42.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:26:54.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:26:52.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "2020-02-25T08:09:42.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:09:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:45 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000 body: encoding: US-ASCII string: '' @@ -1087,7 +1087,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1098,49 +1098,50 @@ http_interactions: Content-Type: - application/json Content-Length: - - '3161' + - '3133' X-Compute-Request-Id: - - req-823cd35c-85d7-4b2e-adbf-ffe21954dcde + - req-96a23abe-f4ef-4ce5-9a29-00627a856f5e Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:46 GMT body: encoding: ASCII-8BIT - string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", + string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/2", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/2", + 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/2", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/2", "rel": "bookmark"}], "ram": 2048, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/3", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/3", + 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/3", "rel": "bookmark"}], "ram": 4096, "OS-FLV-DISABLED:disabled": false, "vcpus": 2, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 40, "id": "3"}, {"name": "m1.large", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/4", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/4", + 0, "disk": 40, "id": "3"}, {"name": "m1.ems_refresh_spec", "links": [{"href": + "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": + 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}, {"name": "m1.large", + "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/4", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/4", "rel": "bookmark"}], "ram": 8192, "OS-FLV-DISABLED:disabled": false, "vcpus": 4, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/5", + 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/5", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/5", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec", "links": [{"href": - "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": - 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}, {"name": "m1.ems_refresh_spec_private", - "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", + 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec_private", "links": + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": false, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + 0, "disk": 160, "id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:46 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=c75b1d50-032c-4c2b-b762-a6e6568c64c0 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=610a5fc0-2e7b-4e06-af16-c70148b858e3 body: encoding: US-ASCII string: '' @@ -1152,7 +1153,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1165,17 +1166,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-70898e43-f10d-4e81-9549-16a73c6a5ccb + - req-ba19b98b-f2c9-46c8-b3a3-75897306631d Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:47 GMT body: encoding: ASCII-8BIT string: '{"flavors": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:48 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0/os-flavor-access + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3/os-flavor-access body: encoding: US-ASCII string: '' @@ -1187,7 +1188,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1200,15 +1201,15 @@ http_interactions: Content-Length: - '123' X-Compute-Request-Id: - - req-c03b504b-b778-424d-9ad2-7a710728e935 + - req-faa326aa-5dee-415c-891f-ae751fee8e86 Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:48 GMT body: encoding: ASCII-8BIT - string: '{"flavor_access": [{"tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "flavor_id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + string: '{"flavor_access": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "flavor_id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:49 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1226,76 +1227,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:49 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-bcdec950-ede5-4f44-aefd-b4afa1b3376d + - req-25877204-a6b0-47db-b06c-41cf72711345 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:54.759686", "expires": - "2020-01-14T14:26:54Z", "id": "e870676e0fd544f7b3421218dfb9dbc3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["qrhmdWhIS02SP2Mk1_IqoQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:49.812374", "expires": + "2020-02-25T09:09:49Z", "id": "4ec2d1a566004f9a8dace335bb634a95", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["8iqPKabbQlqkFnioPQwQXQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:50 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1307,75 +1308,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:51 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-dd84cc06-9d68-4fdb-bf4a-2805d2b62c79 + - req-c944f80a-36ee-4a89-aa38-9135a95bb5c0 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:54.860915", "expires": - "2020-01-14T14:26:54Z", "id": "ee6bd2930e674f60a573911331191a1a", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["MvEv5JDQQUOybLJnaYTEHA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:51.061923", "expires": + "2020-02-25T09:09:51Z", "id": "8e5e56358f094e348ec4e9d5c83c681b", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["MlVyv94PRLy9u604KFHq1A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:51 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1387,69 +1388,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:54 GMT + - Tue, 25 Feb 2020 08:09:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-41ff33e7-7da5-4ca0-a1db-31b7625d1b67 + - req-a0227275-1896-4bb7-b01f-d652a0f5fd19 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:54.964179", "expires": - "2020-01-14T14:26:54Z", "id": "f1f8ab14a9fd421b9c443cb721a317ef", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["csm6kxf5RJSAE5cAYiSUVg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:52.068696", "expires": + "2020-02-25T09:09:52Z", "id": "59324e17128743c997651fc03da21dfb", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["onEql74BQ4KwDz_IK3vz6Q"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:54 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1467,69 +1468,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:53 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-4b9792ec-25b8-46e3-9474-f164ee899bfb + - req-9a43b792-87c8-4022-9bbf-6a0e2656ef7a Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:55.066659", "expires": - "2020-01-14T14:26:55Z", "id": "2a4ed5b7c5e6401d933fbde0c35d053d", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["S_RzggAkSHqisRM0naZJXg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:09:53.144363", "expires": + "2020-02-25T09:09:53Z", "id": "73f2de32cc4349e48c9c9b7617fb5ba9", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["o6vbxGEARAK62COSM0ne8w"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:53 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1544,7 +1545,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ee6bd2930e674f60a573911331191a1a + - 4ec2d1a566004f9a8dace335bb634a95 response: status: code: 200 @@ -1555,54 +1556,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-81a4ecf8-9542-4d31-819a-33dfe7853935 + - req-6a10d881-3f9f-401c-b433-31af297398a2 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:53 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:54 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1614,7 +1615,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ee6bd2930e674f60a573911331191a1a + - 4ec2d1a566004f9a8dace335bb634a95 response: status: code: 200 @@ -1625,14 +1626,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-d34dd7a5-66eb-4f99-b6d0-860ea13e1185 + - req-8a4a7d18-bb57-4824-bfe8-1d41f992c1ff Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:54 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:54 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1647,7 +1648,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f1f8ab14a9fd421b9c443cb721a317ef + - 8e5e56358f094e348ec4e9d5c83c681b response: status: code: 200 @@ -1658,54 +1659,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-cb37aec3-9ea8-437f-a6df-9a4d4f603de6 + - req-012aee9b-e61b-486c-80cf-b65423d12a78 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:55 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:55 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1717,7 +1718,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f1f8ab14a9fd421b9c443cb721a317ef + - 8e5e56358f094e348ec4e9d5c83c681b response: status: code: 200 @@ -1728,14 +1729,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-47e2446b-ecec-478c-b56a-9a8d4c9d5afb + - req-533bacba-4220-43f2-aca9-7fcec57069b6 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:56 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:56 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1750,7 +1751,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e870676e0fd544f7b3421218dfb9dbc3 + - 59324e17128743c997651fc03da21dfb response: status: code: 200 @@ -1761,54 +1762,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-58120c44-95b0-4389-b24d-31b24b3faa77 + - req-eb1d212f-9ffa-49ff-a88f-b011e54dae1d Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:57 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:57 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1820,7 +1821,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e870676e0fd544f7b3421218dfb9dbc3 + - 59324e17128743c997651fc03da21dfb response: status: code: 200 @@ -1831,14 +1832,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-19bcda69-6b00-4a93-b235-48817a612cab + - req-792ce5d2-1f2a-4c9b-af06-883cbbcd7f78 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:58 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:58 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1853,7 +1854,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a4ed5b7c5e6401d933fbde0c35d053d + - 73f2de32cc4349e48c9c9b7617fb5ba9 response: status: code: 200 @@ -1864,54 +1865,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-b64a7aab-8c51-43c8-b72e-c8e0159ef467 + - req-ccf98a4b-f7c4-4396-aa87-9f90f9c8c1f9 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:09:59 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:09:59 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1923,7 +1924,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a4ed5b7c5e6401d933fbde0c35d053d + - 73f2de32cc4349e48c9c9b7617fb5ba9 response: status: code: 200 @@ -1934,17 +1935,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-cb09de79-4cb5-40d4-9580-18c6504d75f9 + - req-3bc6f409-5ab7-4ee9-8c6a-95e6a573b919 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:10:00 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:00 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1956,7 +1957,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1969,22 +1970,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-de1c35e3-b275-44cb-b571-78af2f21695b + - req-249a3a6e-a920-4340-b439-61f80c2b9808 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:10:00 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:01 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1996,7 +1997,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2009,22 +2010,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-2ddd8c38-445e-4709-86a9-8b5fb1d60de4 + - req-2ded1ec9-5ce6-43be-a02a-f135c1964825 Date: - - Tue, 14 Jan 2020 13:26:55 GMT + - Tue, 25 Feb 2020 08:10:01 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:55 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:01 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2036,7 +2037,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2049,22 +2050,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-fcb0f04c-554f-4c90-918c-b53752483250 + - req-9a943ddb-4e39-49d1-84ab-499fd4b7cd35 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:02 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:02 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2076,7 +2077,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2089,22 +2090,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-2f8e54bb-8aa3-47d9-8f90-b6f08dd070ce + - req-38068808-aea0-4ebe-bf87-4140bbbb55a4 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:03 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:03 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2116,7 +2117,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2129,22 +2130,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-8d40a4b7-cb8c-42a3-aa03-66e1aac585d9 + - req-6148bf81-159d-4d3c-bb09-366b513817d4 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:04 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:04 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2156,7 +2157,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2169,22 +2170,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-f1260573-78f7-4114-a483-656cc1cb3c46 + - req-f2c93b6c-a1a0-40fe-95d7-6e9430da3613 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:05 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:05 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2196,7 +2197,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2209,22 +2210,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-be805c3a-1aee-40dc-a62a-1ad0f00b4187 + - req-5445afcc-8086-4a77-add8-f8d29886331a Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:06 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:06 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2236,7 +2237,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2249,19 +2250,19 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-878da64c-7c9a-4132-9ea9-6c2d6823fde6 + - req-0cdc346e-02a3-49a0-b584-c39cdcc008bc Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:07 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:07 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2279,76 +2280,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:08 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-501ca66a-7868-423c-b93c-f8b511c683d2 + - req-06408aae-fedd-4aae-9de6-1adea4ef40ca Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:56.370139", "expires": - "2020-01-14T14:26:56Z", "id": "56fcd35f9fcc4c21ba604a986282ed69", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["BrEd8m-zRGSpvK5GgUhwag"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:08.407292", "expires": + "2020-02-25T09:10:08Z", "id": "fb23b2c03f944714b00819f1ea0a7f83", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["9CS2-iguQ6udALiOCWF5-g"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:08 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2360,75 +2361,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:09 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-abbea3f7-b3e3-4d3d-af38-80a12c09125a + - req-79ed1385-3e08-45a2-9172-3ba04a83f249 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:56.466002", "expires": - "2020-01-14T14:26:56Z", "id": "ff57c4cfb3104f2a87ff55eb5b12cd72", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["OCzSxRNXRVCkCQ1QarSbpg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:09.546867", "expires": + "2020-02-25T09:10:09Z", "id": "19ee30813a3a495fb5d7d3913bb20721", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["H7ZMsbACStGb6IRzjkJRPQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:10 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2440,69 +2441,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:10 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0483a8d8-aa19-4907-aee5-e34da86f16cc + - req-b4cb871b-22ae-40f7-be59-f60c4e468917 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:56.570281", "expires": - "2020-01-14T14:26:56Z", "id": "a96cf7ba95de4fc1ab15cc1142188b3a", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["JUuItWrYTSWmyms6YYaOAA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:10.763971", "expires": + "2020-02-25T09:10:10Z", "id": "3ac23723df5a46cb9cb5f4d145aecf41", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["lKh9EHCgRJeXzklkcVR3Sg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:11 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2520,72 +2521,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:11 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b500f424-3202-49c6-887a-84bc81cdcf31 + - req-5abd2ea3-4552-4ada-92ba-97311be145d1 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:56.670709", "expires": - "2020-01-14T14:26:56Z", "id": "634a7ba5713e49efb80823b839b2c053", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["dMagjdCTT9-9nbFdSJ01Gw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:11.854325", "expires": + "2020-02-25T09:10:11Z", "id": "809866956050458aac75f6885e1224c2", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["5ssGNeBDRfuxnWe-2zPL8A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:11 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2597,7 +2598,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ff57c4cfb3104f2a87ff55eb5b12cd72 + - fb23b2c03f944714b00819f1ea0a7f83 response: status: code: 200 @@ -2608,17 +2609,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-8b4230c0-cb31-4371-9179-6c0a4fa6bdac + - req-50623ccf-4787-40fd-a1a9-f8ba456f9381 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:12 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:12 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2630,7 +2631,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a96cf7ba95de4fc1ab15cc1142188b3a + - 19ee30813a3a495fb5d7d3913bb20721 response: status: code: 200 @@ -2641,17 +2642,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-93fc1652-4da0-4428-b3e3-57d652dc5763 + - req-55ab9b86-940f-4f8e-93c1-a685a1e9a638 Date: - - Tue, 14 Jan 2020 13:26:56 GMT + - Tue, 25 Feb 2020 08:10:13 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:13 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2663,7 +2664,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 56fcd35f9fcc4c21ba604a986282ed69 + - 3ac23723df5a46cb9cb5f4d145aecf41 response: status: code: 200 @@ -2674,17 +2675,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-cb8d3f74-7cd7-4ec1-bb30-517055aae5db + - req-43aabd7b-addb-4eae-bbbf-c9f3791819b7 Date: - - Tue, 14 Jan 2020 13:26:57 GMT + - Tue, 25 Feb 2020 08:10:13 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:57 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:14 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2696,7 +2697,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2705,11 +2706,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-961d0b64-301b-4b76-b72c-a59b81c056c4 + - req-5e618713-c2a2-4d34-a951-c6b0c3f7cb8a Date: - - Tue, 14 Jan 2020 13:26:57 GMT + - Tue, 25 Feb 2020 08:10:14 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -2718,35 +2719,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:57 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:14 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -2758,7 +2759,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2769,17 +2770,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-d3b42410-3026-4a94-b97b-fe2d275c07d0 + - req-0d69483e-bac5-4d9d-9ce8-b4843ba9091c Date: - - Tue, 14 Jan 2020 13:26:57 GMT + - Tue, 25 Feb 2020 08:10:15 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:57 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:15 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -2791,7 +2792,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2800,11 +2801,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-93f4df69-30b7-4055-948a-c363cf8b634c + - req-8864b6bf-0d25-4682-a020-eea4cfda843f Date: - - Tue, 14 Jan 2020 13:26:57 GMT + - Tue, 25 Feb 2020 08:10:16 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2813,28 +2814,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:57 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:16 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -2846,7 +2847,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2855,11 +2856,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-d3ee03fa-8f15-45e9-b40a-1ae06eb77551 + - req-1c8ee4dc-86d4-421c-8904-c7c31d0dc5ae Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:17 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2868,28 +2869,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:17 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -2901,7 +2902,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2910,11 +2911,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-3a463afc-d2cc-4f05-b19b-26108421b591 + - req-6e3e05db-998e-4247-aff7-a5a3cbac1a89 Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:18 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2923,28 +2924,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:18 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/template body: encoding: US-ASCII string: '' @@ -2956,7 +2957,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -2967,9 +2968,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-3e72d69a-49b5-446c-999c-24831edbafef + - req-4b5f5402-e51e-4e84-9087-21c0a565be37 Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:19 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3025,11 +3026,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:19 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -3041,7 +3042,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -3050,26 +3051,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-19c39186-73e9-4d45-a893-200718927ef3 + - req-52a090e1-5ae8-4042-adfa-4a5d7fd880b9 Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:20 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:20 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3081,7 +3082,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3094,17 +3095,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-06e72491-b13d-4cf0-8196-12864e475372 + - req-e85d30c4-14e8-4d8e-a80a-3bbe471fc065 Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:20 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:21 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3116,7 +3117,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3129,17 +3130,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-c400f323-41a4-47b9-8c12-739b6f19afef + - req-809bc3b8-51c1-412a-89e5-5b3c99a8f3bc Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:21 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:21 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3151,7 +3152,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3164,17 +3165,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-edd8de88-527d-427e-b7ac-ce5efcfdc836 + - req-d3c01451-03c1-4521-991e-7d96884cbedf Date: - - Tue, 14 Jan 2020 13:26:58 GMT + - Tue, 25 Feb 2020 08:10:22 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:22 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3186,7 +3187,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3197,200 +3198,200 @@ http_interactions: Content-Type: - application/json Content-Length: - - '17285' + - '17413' X-Compute-Request-Id: - - req-8557b445-ca78-4187-90cc-be1b1470e64a + - req-b92e9f46-0233-4567-ac71-6a50af5fcc27 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:23 GMT body: encoding: ASCII-8BIT - string: '{"servers": [{"status": "ACTIVE", "updated": "2020-01-13T14:54:49Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", "version": 4, "addr": "192.168.1.10", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", + string: '{"servers": [{"status": "ACTIVE", "updated": "2020-02-24T12:11:21Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "192.168.1.7", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "172.16.17.9", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/6bda6c84-4790-4418-95eb-75258de017fd", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/6bda6c84-4790-4418-95eb-75258de017fd", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "f8539a54-cdb8-4fc2-9409-234a67ebb095", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", + "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000009", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:14.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "6bda6c84-4790-4418-95eb-75258de017fd", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:11:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", - "created": "2020-01-12T16:06:08Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", + "created": "2020-02-24T12:11:02Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}, {"status": "SHELVED_OFFLOADED", "updated": - "2020-01-12T16:06:29Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d0:fe:e0", - "version": 4, "addr": "192.168.1.9", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:d0:fe:e0", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", + "2020-02-24T12:12:17Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": + {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d1:51:2b", + "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:d1:51:2b", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": + "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "shelved_offloaded", "OS-EXT-SRV-ATTR:instance_name": "instance-00000008", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:46.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - null, "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "security_groups": + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + null, "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Shelved", "created": "2020-01-12T16:05:35Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Shelved", "created": "2020-02-24T12:10:09Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-01-12T16:06:24Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", "version": 4, "addr": "192.168.1.8", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", + "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-02-24T12:12:02Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "192.168.1.5", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "172.16.17.7", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "suspended", "OS-EXT-SRV-ATTR:instance_name": "instance-00000007", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:45.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "security_groups": + "2020-02-24T12:10:22.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Suspended", "created": "2020-01-12T16:05:34Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Suspended", "created": "2020-02-24T12:10:06Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-01-13T14:56:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", "version": 4, "addr": "192.168.1.7", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", + "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-02-24T12:11:47Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "192.168.1.4", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "172.16.17.6", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "paused", "OS-EXT-SRV-ATTR:instance_name": "instance-00000006", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:44.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "security_groups": + "2020-02-24T12:10:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Paused", "created": "2020-01-12T16:05:32Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Paused", "created": "2020-02-24T12:10:01Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 3, "config_drive": - "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:55:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", "version": 4, "addr": "192.168.3.9", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", + "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:24Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "192.168.3.9", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "172.16.17.5", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": "", "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000005", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:50.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", - "created": "2020-01-12T16:05:30Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", + "created": "2020-02-24T12:09:58Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [{"id": - "2042bbec-e245-405e-8e77-cde0205ab38e"}], "accessIPv4": "", "accessIPv6": + "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:54:40Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", - "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:6c:e7:30", "version": 4, "addr": "172.16.17.4", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:58Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:9f:ba:08", "version": 4, "addr": "192.168.1.3", "OS-EXT-IPS:type": + "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": + "172.16.17.4", "OS-EXT-IPS:type": "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000004", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:00.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:10:37.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "da40eae5-9021-4406-939e-d9dd9b528f3d", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn", "created": - "2020-01-12T16:05:28Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": - "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "accessIPv4": "", "accessIPv6": + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn", "created": + "2020-02-24T12:09:56Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": + "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:fb:9c:40", - "version": 4, "addr": "192.168.1.5", "OS-EXT-IPS:type": "fixed"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:8d:c7:fb", "version": 4, "addr": "192.168.0.5", "OS-EXT-IPS:type": + "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack3-wordpress_instance-ofo5r5sqfrqk", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack3-wordpress_instance-map6mpkxczzn", + "created": "2020-02-24T12:09:34Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:af:c3:0b", "version": 4, "addr": "192.168.1.4", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9c:8d:f3", "version": 4, "addr": "192.168.0.4", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "31b66a4b-0971-4a6e-a171-3da45ea56100", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack2-wordpress_instance-57hrtur7dpyy", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack2-wordpress_instance-uy3qefkmuu3r", + "created": "2020-02-24T12:09:32Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:32:9d:1b", "version": 4, "addr": "192.168.1.3", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/5c489d02-0165-4746-9568-3f1a616b89f1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/5c489d02-0165-4746-9568-3f1a616b89f1", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:e6:f0:9d", "version": 4, "addr": "192.168.0.3", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "5c489d02-0165-4746-9568-3f1a616b89f1", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack1-wordpress_instance-xhskaxkrwj7l", - "created": "2020-01-12T16:05:16Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack1-wordpress_instance-mlbps434huur", + "created": "2020-02-24T12:09:30Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:24 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/detail?limit=1000&marker=5c489d02-0165-4746-9568-3f1a616b89f1 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/detail?limit=1000&marker=c6a48c9a-005d-42dc-b30d-787925b7e99f body: encoding: US-ASCII string: '' @@ -3402,7 +3403,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3415,17 +3416,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-c75e8d81-2257-446b-9915-bcd388550ab4 + - req-60cb8a60-bf5a-4f65-b64e-10d1898a2952 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:25 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:25 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/template body: encoding: US-ASCII string: '' @@ -3437,7 +3438,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -3448,9 +3449,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-c09208b9-8f09-4c5d-ac69-1158acd96a45 + - req-71f73838-be90-4d13-b45e-a9bca62fe758 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:26 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3506,11 +3507,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:27 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -3522,7 +3523,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -3531,26 +3532,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-010e7b7a-4863-4a9e-b58e-e2b08ed2663f + - req-ac13007b-88bd-4f03-8a8b-5b3f850cf793 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:27 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:28 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/template body: encoding: US-ASCII string: '' @@ -3562,7 +3563,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -3573,9 +3574,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-83a3f97a-9f18-4afd-a812-cc1a7c36488c + - req-c1b8e5e0-daf7-4288-a27d-9138b735981b Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:28 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3631,11 +3632,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:28 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -3647,7 +3648,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 634a7ba5713e49efb80823b839b2c053 + - 809866956050458aac75f6885e1224c2 response: status: code: 200 @@ -3656,26 +3657,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-8cd7dbb8-68ac-41c9-9078-edb52c314398 + - req-1f74a6c8-90c8-4d5f-a864-5df2bb10eeaf Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:29 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:29 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -3687,7 +3688,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 43b328dd3ecc4ed99e70579a9f52f77a + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3700,21 +3701,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-0b0b422a-edf9-475c-94a6-de362ba4a586 + - req-3e91d510-2a3e-4c40-bd6d-a69c24928a6e Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:30 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "2db86326708a44629d0a27103e6daa04", "instances": + 10, "key_pairs": 100, "id": "4f018636e6414466b02641748cd91484", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:30 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -3726,7 +3727,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e31a6a1de11c4b5ea1d7e57176ac1185 + - 875f1afba5ff4168b2132ec6a3c72dbe X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3739,21 +3740,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-fbedc5c9-b8e6-4329-8383-748be375035b + - req-ce4b65d6-7365-4275-9717-47e9ae830e05 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:31 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "56ac37685be246aba905e0301d595693", "instances": + 10, "key_pairs": 100, "id": "6152fef686644e46820e3d266fc8a5ce", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:31 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -3765,7 +3766,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - e2e445c298a14cad9ccd8646c339006d X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3778,21 +3779,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-110ad522-ae8f-4f3d-be5e-b2f1ba3928d2 + - req-6e31770c-916f-4c8b-93f8-e90b6a4a59c8 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:32 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "66df12d5801449a2b529d3a1bbf279b0", "instances": + 10, "key_pairs": 100, "id": "dadaba8276f24d6eb2526ffa43cd4e33", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:32 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -3804,7 +3805,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3817,24 +3818,24 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-0345fe47-1358-4260-83a1-e9d2c9600ad0 + - req-462b5667-a185-4cdc-8b46-161071a7d3b8 Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:33 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "8eb4b49207904f6eb33283732571bc0e", "instances": + 10, "key_pairs": 100, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:33 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3846,75 +3847,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7ee07b08-f44c-4410-b0f3-e24e4767bd32 + - req-3f3cb71e-4fe0-4c11-8706-cb7aa2c51571 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:59.776124", "expires": - "2020-01-14T14:26:59Z", "id": "7704effeff2a433ea7a955f88c6fe416", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["2Pcup1yBSaWOpdfMoh1V2w"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:34.345596", "expires": + "2020-02-25T09:10:34Z", "id": "a449e5b840894cbe991099d73ce7de68", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["WhpwQqe0RJunPbIlH7BLew"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:34 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3926,69 +3927,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-43c639a6-ee78-42d9-92c1-ac4489fd0d48 + - req-b3c8d5fd-9a8f-49dd-9900-1cb111110988 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:59.866970", "expires": - "2020-01-14T14:26:59Z", "id": "19b7c434f2bb4a8c8300035f62ace947", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["rt3qWHqpTYauu081okpTDA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:35.551833", "expires": + "2020-02-25T09:10:35Z", "id": "82ebb04eb0524debabef1f38b8db9001", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["sNq8X5MTTpuftmMfU89h7A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4006,72 +4007,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:26:59 GMT + - Tue, 25 Feb 2020 08:10:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7ebdd1a7-4482-4afe-bb5d-160da6d91ca5 + - req-ea1e86e4-802a-4fc1-b56a-034498b66510 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:26:59.960215", "expires": - "2020-01-14T14:26:59Z", "id": "9917799d0ba3418ab35ffd6c024ae08f", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["AtrftKEoTMiWfwA-bW0SCA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:36.136705", "expires": + "2020-02-25T09:10:36Z", "id": "ad65ca9e5dae4f24b012d6845e502212", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["LUe0MV6xSLyjcQa2_o0Hqw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:26:59 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:36 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -4083,22 +4084,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7704effeff2a433ea7a955f88c6fe416 + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-a81864cb-cefb-4e58-b418-cae37052b5a1 + - req-db7d333b-7431-4be7-a46c-6a7d06d75d8b Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-a81864cb-cefb-4e58-b418-cae37052b5a1 + - req-db7d333b-7431-4be7-a46c-6a7d06d75d8b Date: - - Tue, 14 Jan 2020 13:27:00 GMT + - Tue, 25 Feb 2020 08:10:37 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4106,12 +4107,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "2db86326708a44629d0a27103e6daa04"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:00 GMT + -1, "id": "4f018636e6414466b02641748cd91484"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:37 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -4123,22 +4124,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19b7c434f2bb4a8c8300035f62ace947 + - a449e5b840894cbe991099d73ce7de68 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-e59c9e2e-c4cf-40bc-aa64-bf0e2c51c597 + - req-f4b3ea53-656a-4be0-ac00-50437c0be6e5 Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-e59c9e2e-c4cf-40bc-aa64-bf0e2c51c597 + - req-f4b3ea53-656a-4be0-ac00-50437c0be6e5 Date: - - Tue, 14 Jan 2020 13:27:00 GMT + - Tue, 25 Feb 2020 08:10:38 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4146,12 +4147,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "56ac37685be246aba905e0301d595693"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:00 GMT + -1, "id": "6152fef686644e46820e3d266fc8a5ce"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:38 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -4163,22 +4164,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 82ebb04eb0524debabef1f38b8db9001 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7e882c4d-1377-4cc8-93d2-7229e97ddaa9 + - req-5ef3058b-0b56-4957-984a-0e3e9d9aa7fa Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-7e882c4d-1377-4cc8-93d2-7229e97ddaa9 + - req-5ef3058b-0b56-4957-984a-0e3e9d9aa7fa Date: - - Tue, 14 Jan 2020 13:27:01 GMT + - Tue, 25 Feb 2020 08:10:39 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4186,12 +4187,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "66df12d5801449a2b529d3a1bbf279b0"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:01 GMT + -1, "id": "dadaba8276f24d6eb2526ffa43cd4e33"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:39 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -4203,22 +4204,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-8602011a-2d00-47b1-bb9a-8c596cf64548 + - req-3f3f48b8-d5a7-44db-ba38-252fedd7c351 Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-8602011a-2d00-47b1-bb9a-8c596cf64548 + - req-3f3f48b8-d5a7-44db-ba38-252fedd7c351 Date: - - Tue, 14 Jan 2020 13:27:01 GMT + - Tue, 25 Feb 2020 08:10:40 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4226,9 +4227,9 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "8eb4b49207904f6eb33283732571bc0e"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:01 GMT + -1, "id": "e9bb9a5ed00244e0b3c288ed495abbf9"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:40 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4246,76 +4247,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:01 GMT + - Tue, 25 Feb 2020 08:10:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0e440420-6c18-4e25-98e8-4eac7f4fc52f + - req-0dd503b4-9d03-4b86-a044-ccab1d686f32 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:01.971802", "expires": - "2020-01-14T14:27:01Z", "id": "5e2b2bff59694414af81e01aee3923c1", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["jpwm3CzcSQiZrwnkVZuS-w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:41.801366", "expires": + "2020-02-25T09:10:41Z", "id": "fcca1a1e71434953899a03fbb71f3d1d", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["43nxxL-UQFiW4KIRUYxXyg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:01 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:41 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4327,75 +4328,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:01 GMT + - Tue, 25 Feb 2020 08:10:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9b7ab52b-27fa-4045-9740-8a898f9400f1 + - req-644c2702-1556-4358-90d9-0e3dc5908519 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:02.066439", "expires": - "2020-01-14T14:27:02Z", "id": "9236fc0666134a92bed4fcfba122254a", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["Zx4nj56NSGaIs3uBdbxvYw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:42.688037", "expires": + "2020-02-25T09:10:42Z", "id": "fd0f75d75edd4b5086e72625942b8289", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["5FGM-OSfRB6RH0RAteOZig"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:42 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4407,69 +4408,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:43 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3ec5d80f-b6b8-4ac7-b3e0-728f2cf61a3e + - req-ac169ea4-10ab-495d-8b93-dc96d0dd2327 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:02.184552", "expires": - "2020-01-14T14:27:02Z", "id": "3bec9930e753446083820c92e1afd5e0", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["6LrJik2ZT7OqrluANSdLjQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:43.911300", "expires": + "2020-02-25T09:10:43Z", "id": "a302fe926ea14672a00b8c558ebe30b8", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["7dBZ46ZdSZOVh7bOf15rgg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:44 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4487,72 +4488,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:45 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f8989a8a-ea93-4ff5-8df1-802d354039ad + - req-e9eb65b4-3bef-4b3c-92db-f0e7d5960cd9 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:02.296340", "expires": - "2020-01-14T14:27:02Z", "id": "2880ecd621e744eca11616af3683fbf6", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["emFafySdQW2xONQ6A5hd8w"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:45.158257", "expires": + "2020-02-25T09:10:45Z", "id": "96549297bb784c4283cf6ddf6227c1db", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["z6prUe5vR36XAtvebgybfA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:45 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:9696/v2.0//quotas/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -4564,7 +4565,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9236fc0666134a92bed4fcfba122254a + - fcca1a1e71434953899a03fbb71f3d1d response: status: code: 200 @@ -4575,19 +4576,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-f4a6aa51-e0b1-479f-bb4e-a25463cc6b54 + - req-3dfb91fb-6a32-46ee-9ad8-91c85a138169 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:46 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:46 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:9696/v2.0//quotas/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -4599,7 +4600,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3bec9930e753446083820c92e1afd5e0 + - fd0f75d75edd4b5086e72625942b8289 response: status: code: 200 @@ -4610,19 +4611,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-225572b2-435b-4673-8614-570f33fd09b1 + - req-ade8c83b-8f60-4c7b-87e7-d3daeee35cf1 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:47 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:47 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:9696/v2.0//quotas/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -4634,7 +4635,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5e2b2bff59694414af81e01aee3923c1 + - a302fe926ea14672a00b8c558ebe30b8 response: status: code: 200 @@ -4645,19 +4646,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-842044f3-38c2-4ef8-9e6c-78d1023c9b86 + - req-167fe0b0-9c5a-43ac-b5c0-63bcd68f30b3 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:48 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:48 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:9696/v2.0//quotas/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -4669,7 +4670,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2880ecd621e744eca11616af3683fbf6 + - 96549297bb784c4283cf6ddf6227c1db response: status: code: 200 @@ -4680,19 +4681,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-36f0d577-7b6a-4305-8a20-73360462cc76 + - req-d0a17475-0054-4022-b275-fe9714052537 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:49 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 20, "network": 20, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:49 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96/os-volume_attachments + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0/os-volume_attachments body: encoding: US-ASCII string: '' @@ -4704,7 +4705,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4717,18 +4718,18 @@ http_interactions: Content-Length: - '197' X-Compute-Request-Id: - - req-b61146a1-f5c8-44b5-9208-bc7b3532ee66 + - req-0ae7e45c-0c71-4713-8f32-813944eb61c1 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:50 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e", "volumeId": "2042bbec-e245-405e-8e77-cde0205ab38e"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "volumeId": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:50 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-volume_attachments + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-volume_attachments body: encoding: US-ASCII string: '' @@ -4740,7 +4741,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5bea490bd481402494b63e2a7ca66c22 + - cb38714fa3a84dd88f7ce2b83d801be6 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4753,17 +4754,17 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-ec354a76-17fe-4ee9-911e-55df9a4d6ea1 + - req-44622b78-6f93-4f74-9c9b-ac5b82b81454 Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:51 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "volumeId": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"device": "/dev/vde", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "volumeId": "8da56634-38f0-4eb5-850c-4914089dc2ec"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:02 GMT + string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "volumeId": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"device": "/dev/vde", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "volumeId": "fd763573-0660-40f7-a9af-99877e1ea6e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:51 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4781,70 +4782,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:02 GMT + - Tue, 25 Feb 2020 08:10:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-700a7b06-77cb-43e7-b82a-61aba7cce056 + - req-2f1f3b5c-28c8-4094-b1fd-96da4be39b8a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:03.004517", "expires": - "2020-01-14T14:27:02Z", "id": "328e19f524ee4816bcbba4ab2995008e", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["ytcFl-cnRaqbB9NaRpq0gQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:52.524585", "expires": + "2020-02-25T09:10:52Z", "id": "da79c885ae3e474fa0586b8d60fd8ada", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["PwoeJA0oRjam-3ZmF_32LA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4862,73 +4863,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:53 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-bb9051ed-a1e6-470f-aa54-8922202ff47c + - req-003ce5c4-9663-4ef6-93aa-4fbc3d0b8ac4 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:03.092968", "expires": - "2020-01-14T14:27:03Z", "id": "fb172009500f4957b65ba265bcee8c3a", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["5uxbrMBbQBubvg2jyrTHNg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:10:53.394487", "expires": + "2020-02-25T09:10:53Z", "id": "91827692d7ca40a7a7058674c7dad69a", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["_gtG99KQTzCZORE4uCtwYg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:53 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-aggregates + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-aggregates body: encoding: US-ASCII string: '' @@ -4940,7 +4941,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79d27949b46443d8bd05570d7864d054 + - cb5a78c57b1f461ba0bb5064a515857f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4953,17 +4954,17 @@ http_interactions: Content-Length: - '18' X-Compute-Request-Id: - - req-0279cb34-0902-4b26-b68f-5a09560a257c + - req-e0cfaaea-a50d-4bfb-a394-a34436624fd3 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:54 GMT body: encoding: ASCII-8BIT string: '{"aggregates": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:55 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -4975,30 +4976,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7704effeff2a433ea7a955f88c6fe416 + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-d29c6f92-9078-4740-b6ba-5d7f8b58ac7c + - req-a3f6613b-5a42-4f2f-b993-51af48baa049 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-d29c6f92-9078-4740-b6ba-5d7f8b58ac7c + - req-a3f6613b-5a42-4f2f-b993-51af48baa049 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:55 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:56 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5010,30 +5011,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19b7c434f2bb4a8c8300035f62ace947 + - a449e5b840894cbe991099d73ce7de68 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-29aaf404-ca34-4484-8ff8-9f2ee7e9f196 + - req-ea5ab72d-7d81-477c-b806-f9a827f98803 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-29aaf404-ca34-4484-8ff8-9f2ee7e9f196 + - req-ea5ab72d-7d81-477c-b806-f9a827f98803 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:56 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:57 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5045,30 +5046,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 82ebb04eb0524debabef1f38b8db9001 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-59933206-4ff5-4a36-9cc8-821244390a44 + - req-3346bb2d-dab2-4524-9507-385f1b3f4510 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-59933206-4ff5-4a36-9cc8-821244390a44 + - req-3346bb2d-dab2-4524-9507-385f1b3f4510 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:57 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:57 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5080,70 +5081,70 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-494b1651-f949-4750-93d4-b272e79962db + - req-2ebf51ad-3a4a-4a0c-acbb-ada616cfe912 Content-Type: - application/json Content-Length: - - '3734' + - '3716' X-Openstack-Request-Id: - - req-494b1651-f949-4750-93d4-b272e79962db + - req-2ebf51ad-3a4a-4a0c-acbb-ada616cfe912 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:58 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:58 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=258fcc18-5c61-4a59-83c4-92969abe6fb9&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=f97913d2-9211-4aed-a34c-e2efcccb1008&status=available body: encoding: US-ASCII string: '' @@ -5155,30 +5156,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b81e09ac-fab6-43bb-b03f-064fb5803b53 + - req-87d7ecf1-1007-4768-b779-c633202945df Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-b81e09ac-fab6-43bb-b03f-064fb5803b53 + - req-87d7ecf1-1007-4768-b779-c633202945df Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:10:59 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:10:59 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -5190,30 +5191,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7704effeff2a433ea7a955f88c6fe416 + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c0286dd0-9b6f-4db8-990e-a4db37c36719 + - req-adb78b1b-7912-44b3-84d7-300405d88af7 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-c0286dd0-9b6f-4db8-990e-a4db37c36719 + - req-adb78b1b-7912-44b3-84d7-300405d88af7 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:11:00 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:00 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5225,30 +5226,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7704effeff2a433ea7a955f88c6fe416 + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-149cfc5e-3a9c-43d8-88f7-0dfa693588af + - req-69468b98-ecca-44e5-b689-8f2a8f4f2884 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-149cfc5e-3a9c-43d8-88f7-0dfa693588af + - req-69468b98-ecca-44e5-b689-8f2a8f4f2884 Date: - - Tue, 14 Jan 2020 13:27:03 GMT + - Tue, 25 Feb 2020 08:11:01 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:01 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail body: encoding: US-ASCII string: '' @@ -5260,30 +5261,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19b7c434f2bb4a8c8300035f62ace947 + - a449e5b840894cbe991099d73ce7de68 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-a9597b89-3b70-4676-b886-217b8aa277db + - req-eef0a765-88a7-4a36-b683-62ef7bccec93 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-a9597b89-3b70-4676-b886-217b8aa277db + - req-eef0a765-88a7-4a36-b683-62ef7bccec93 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:02 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:02 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5295,30 +5296,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19b7c434f2bb4a8c8300035f62ace947 + - a449e5b840894cbe991099d73ce7de68 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-8e438068-e216-405b-b682-bed179f9fb5e + - req-36bf5b2d-e4d8-4ab1-b6d4-e3b7e9360003 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-8e438068-e216-405b-b682-bed179f9fb5e + - req-36bf5b2d-e4d8-4ab1-b6d4-e3b7e9360003 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:03 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:03 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail body: encoding: US-ASCII string: '' @@ -5330,30 +5331,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 82ebb04eb0524debabef1f38b8db9001 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-faef9ac0-403a-4c62-898b-8b5e89d80831 + - req-c5fcd6d9-473f-472f-a1ea-83d98ab8bd45 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-faef9ac0-403a-4c62-898b-8b5e89d80831 + - req-c5fcd6d9-473f-472f-a1ea-83d98ab8bd45 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:04 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:04 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5365,30 +5366,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 82ebb04eb0524debabef1f38b8db9001 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6309614b-c62f-43bd-9890-527a8008ea7c + - req-1059b2ba-6099-4877-8f81-6af301300fec Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-6309614b-c62f-43bd-9890-527a8008ea7c + - req-1059b2ba-6099-4877-8f81-6af301300fec Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:05 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:05 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail body: encoding: US-ASCII string: '' @@ -5400,44 +5401,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b35f3292-4abd-4080-b051-4deacf021a2d + - req-db18de1d-e519-4635-a8c7-a7607cc36d57 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-b35f3292-4abd-4080-b051-4deacf021a2d + - req-db18de1d-e519-4635-a8c7-a7607cc36d57 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:06 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:06 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5449,44 +5450,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-ca279443-d0fd-4db1-9570-78940fe7b357 + - req-1c6bb1cd-8908-42ea-831c-3cda9cf4446b Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-ca279443-d0fd-4db1-9570-78940fe7b357 + - req-1c6bb1cd-8908-42ea-831c-3cda9cf4446b Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:07 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:07 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5498,30 +5499,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7704effeff2a433ea7a955f88c6fe416 + - 747396cec8c544d2b28062bc9d63a737 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-84c933a1-0ae4-40f5-bf01-d65e97616229 + - req-774f4c03-3e96-4e8f-8fa9-eac15710c86e Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-84c933a1-0ae4-40f5-bf01-d65e97616229 + - req-774f4c03-3e96-4e8f-8fa9-eac15710c86e Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:08 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:08 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5533,30 +5534,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19b7c434f2bb4a8c8300035f62ace947 + - a449e5b840894cbe991099d73ce7de68 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-ad69ce08-58e8-4ecc-8cfd-16aa7784480d + - req-f540a9be-7b18-419e-add1-c6b5016bc449 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-ad69ce08-58e8-4ecc-8cfd-16aa7784480d + - req-f540a9be-7b18-419e-add1-c6b5016bc449 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:09 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:09 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5568,30 +5569,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d70d5a446793426a99a4d5be4321c75f + - 82ebb04eb0524debabef1f38b8db9001 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-74e335f8-46ac-4247-8336-e697df57c2d1 + - req-b52a0f95-176b-4dc1-91e2-20a2e5eae65e Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-74e335f8-46ac-4247-8336-e697df57c2d1 + - req-b52a0f95-176b-4dc1-91e2-20a2e5eae65e Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:10 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:10 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5603,120 +5604,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-106d3e0d-704f-439b-97f5-a7343c8ec56e + - req-f9cc904e-19a3-46ce-b756-8f6b84e567ea Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-106d3e0d-704f-439b-97f5-a7343c8ec56e + - req-f9cc904e-19a3-46ce-b756-8f6b84e567ea Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:11 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:11 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -5728,27 +5729,27 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9917799d0ba3418ab35ffd6c024ae08f + - ad65ca9e5dae4f24b012d6845e502212 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-034f9861-b300-4520-86c9-f37903997f7a + - req-019b9cc7-7f40-453c-b882-36e93d15b972 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-034f9861-b300-4520-86c9-f37903997f7a + - req-019b9cc7-7f40-453c-b882-36e93d15b972 Date: - - Tue, 14 Jan 2020 13:27:04 GMT + - Tue, 25 Feb 2020 08:11:12 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:12 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -5766,70 +5767,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:08 GMT + - Tue, 25 Feb 2020 08:11:16 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-6c77a9ff-ea76-4555-bcdc-5bbcaf8816cd + - req-149fe05b-5f9c-4c50-ab64-21814453e0a8 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.020437", "expires": - "2020-01-14T14:27:08Z", "id": "2c18f5d537d245bb8623ea89ce02f7f6", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["VKFZDZxdQnaOvBTIYdMUKg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:16.291076", "expires": + "2020-02-25T09:11:16Z", "id": "0098f36b9b4a4358992949a6aa473c8f", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["tKSoM9dXRpqqdII2hAZQ_A"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:16 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -5847,70 +5848,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:17 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-09a3b60a-a4ae-47ec-a2a6-b1d2d3e1b0d0 + - req-5854330a-1ead-4719-b588-b4206a2e74ef Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.115976", "expires": - "2020-01-14T14:27:09Z", "id": "5975c5b6fbca45699ad05b1747913f00", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["l_4MfCvbRoSIG64bGfDJIg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:17.546355", "expires": + "2020-02-25T09:11:17Z", "id": "459feaa24a474a61a6670438d008bcdc", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["i7qbZe4VQKqki0NLJ09GIQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:17 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/networks @@ -5925,7 +5926,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -5936,79 +5937,79 @@ http_interactions: Content-Length: - '5330' X-Openstack-Request-Id: - - req-e2bd59dc-2118-4406-ae67-7837094d48f6 + - req-1c1b6663-0603-471c-82d8-994de4cfd733 Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:18 GMT body: encoding: ASCII-8BIT - string: '{"networks": [{"status": "ACTIVE", "subnets": ["9b51a47a-9ec4-4725-a1bc-7b3165d5375e"], + string: '{"networks": [{"status": "ACTIVE", "subnets": ["b203d38f-01ad-48a3-84fa-0490239b0995", + "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2"], "name": "EmsRefreshSpec-NetworkPublic_50", + "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": + false, "provider:network_type": "flat", "id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["a5e56f5e-f3cf-4224-aaba-71792b317537"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_1", "provider:physical_network": - null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "provider:segmentation_id": - 68}, {"status": "ACTIVE", "subnets": ["e584057e-f15d-4038-82d2-b5ec77234adc"], - "name": "EmsRefreshSpec-NetworkPrivate_3", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "provider:segmentation_id": - 75}, {"status": "ACTIVE", "subnets": ["6b1dade5-4d5e-4ccc-ae57-0ca3222a443c"], - "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "provider:segmentation_id": - 46}, {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], + "vxlan", "id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "provider:segmentation_id": + 98}, {"status": "ACTIVE", "subnets": ["fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mtu": 0, "router:external": false, "shared": false, "provider:network_type": + "vxlan", "id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "provider:segmentation_id": + 59}, {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["d0de16b8-ead6-4b12-b206-9488d1af8d74", - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4"], "name": "EmsRefreshSpec-NetworkPrivate_30", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "provider:segmentation_id": - 97}, {"status": "ACTIVE", "subnets": ["e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "8ca156a0-7ec2-4981-96c6-6499214413cf"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["a6f12ba3-3567-400f-a9ce-6bb4e135f1f3"], + "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", + "id": "873c1069-e420-4178-a77c-99fc2c905605", "provider:segmentation_id": + 13}, {"status": "ACTIVE", "subnets": ["063860da-16bf-4e80-9e03-8ba23bb78303"], + "name": "EmsRefreshSpec-NetworkPrivate_20", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", + "id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "provider:segmentation_id": + 24}, {"status": "ACTIVE", "subnets": ["f0ba8818-dc0d-4683-9af5-e1c83e92df5f", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8"], "name": "EmsRefreshSpec-NetworkPrivate_30", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "678bb925-5f9c-4718-874c-ac592109544c", "provider:segmentation_id": - 82}, {"status": "ACTIVE", "subnets": ["a51f963b-93a5-4892-a9d5-21a32b2e7941"], - "name": "EmsRefreshSpec-NetworkPublic_20", "provider:physical_network": "public_net_2", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["159bd606-50a7-4e16-932a-4ae80ed58efc"], + "vxlan", "id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "provider:segmentation_id": + 86}, {"status": "ACTIVE", "subnets": ["5d12d78d-20e2-4240-845f-cb2bb1b5c51a"], "name": "EmsRefreshSpec-NetworkPublic_40", "provider:physical_network": "public_net_4", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["544ac21e-718b-425a-8fe9-2a3f19cdeb1d"], - "name": "EmsRefreshSpec-NetworkPrivate_20", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["12ec8daa-a53e-4da1-b1cd-659e80cb7584"], + "name": "EmsRefreshSpec-NetworkPublic_10", "provider:physical_network": "public_net_1", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": true, "shared": false, "provider:network_type": "flat", + "id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["dd0f4830-f0e0-49f8-a041-dc7ce7abaa78"], + "name": "EmsRefreshSpec-NetworkPrivate_3", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", "provider:segmentation_id": - 99}, {"status": "ACTIVE", "subnets": ["c9a2a941-2b1a-406e-9d91-fe9a9864b993"], - "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "provider:segmentation_id": + 15}, {"status": "ACTIVE", "subnets": ["273e0170-431e-4f44-a266-7c4d3683ffe8"], + "name": "EmsRefreshSpec-NetworkPublic_20", "provider:physical_network": "public_net_2", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "50426539-7226-4a52-895a-dd8af97779d9", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["668a8b0d-7300-48e1-be97-db0174c341e2", - "201313ab-c7f4-41bf-8aea-56fdeececfc9"], "name": "EmsRefreshSpec-NetworkPublic_50", - "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mtu": 0, "router:external": true, "shared": - false, "provider:network_type": "flat", "id": "9fbb4ac7-7db3-486b-8524-340b65175c40", - "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["96f0bd23-c9f1-4e58-811a-5da42a552272"], - "name": "EmsRefreshSpec-NetworkPublic_10", "provider:physical_network": "public_net_1", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["8b258afd-ddbb-410e-af5f-c8b6f087f782"], + "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "402c76d3-c791-4401-8112-57c026e4c1ee", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["be64e82a-7735-4ae3-a390-b0fb6441c184", - "aa3be045-833a-4a11-9c63-3d9fc3ee0322"], "name": "EmsRefreshSpec-NetworkPrivate", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "28f725f2-026f-4647-8b74-2048baac2063"], "name": "EmsRefreshSpec-NetworkPrivate", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "provider:segmentation_id": - 76}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "vxlan", "id": "fe1373d6-962e-4439-8782-5997d874ca98", "provider:segmentation_id": + 82}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:19 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6026,70 +6027,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:19 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-97d33d7d-8251-45ab-ba6c-818f3f64a6f6 + - req-e7efc202-190e-4f15-bddf-792f635ae803 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.347848", "expires": - "2020-01-14T14:27:09Z", "id": "f6d2de3b20a9469c90561dd960281837", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["gxMwXU7mQZWnenubPWhtwQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:19.777397", "expires": + "2020-02-25T09:11:19Z", "id": "7c3f156116944b51bc4db9b8572b4aaf", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["WZlzlKz8RPCWDqJjMPP4YA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:19 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6107,13 +6108,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:20 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f91e09a5-4fa3-468b-bd9d-c520bbb22883 + - req-d18bffb1-0336-4f90-981e-608cb3d35c21 Content-Length: - '370' Connection: @@ -6122,13 +6123,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.404845", "expires": - "2020-01-14T14:27:09Z", "id": "98a6970aba5b4c5eb64cd46916890720", "audit_ids": - ["k2eZlhXxRAG-2EJog9FjcA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:20.432717", "expires": + "2020-02-25T09:11:20Z", "id": "3533c18e77f845a2ac9ac6c3d8da599d", "audit_ids": + ["Mt-Ckp8ZRcmDSfg-n725XQ"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:20 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -6143,20 +6144,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 98a6970aba5b4c5eb64cd46916890720 + - 3533c18e77f845a2ac9ac6c3d8da599d response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:21 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1e8c39a4-8183-484f-90f7-0eeb3e379a80 + - req-2f80acf2-f1b2-4c29-831b-2b391ac0a36e Content-Length: - '500' Connection: @@ -6165,20 +6166,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:21 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6190,75 +6191,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8414a26a-f605-4d2e-af7b-b0c07c4b2c02 + - req-fbde1a03-8d3d-40a7-9221-e3af688c23ab Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.514628", "expires": - "2020-01-14T14:27:09Z", "id": "38cb6d2c8dc34bd395e6605ac0d904d0", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["H4wR8vWvSx2mqoM8COySVQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:22.812567", "expires": + "2020-02-25T09:11:22Z", "id": "aeb6ae7012994cd9a7b865c5e994ecd6", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["9OgUAp7dQh-YpGS-1aRR1w"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:22 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6270,69 +6271,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a1ad1155-22f1-40e8-ab1b-274196be4358 + - req-60738edd-b559-4360-a06e-96f1ee065533 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.612261", "expires": - "2020-01-14T14:27:09Z", "id": "cb489a165343492c92c22be3c96b6094", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["7Q48oMuEQpmSzsRwq9MvrA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:23.797863", "expires": + "2020-02-25T09:11:23Z", "id": "65293aade0d74dd7ad1e8ed5f938326f", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["I0X79rXBRnGQFbPAQlIGRQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:23 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6350,72 +6351,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:24 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-266efc55-11d9-4137-9660-6d963dd4f0b5 + - req-c15cd2ac-dbc6-4f19-8446-adfd638db81d Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:09.706458", "expires": - "2020-01-14T14:27:09Z", "id": "e2878a05f3df4e2b835a5db25313d55b", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["5Z1ZqEGOSb2yBRACGo6Uqg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:24.614117", "expires": + "2020-02-25T09:11:24Z", "id": "e532d369a92e4c62af04109b53991f80", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["Dez_ftNqSj-37B8IKzhRJQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:24 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6427,7 +6428,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 38cb6d2c8dc34bd395e6605ac0d904d0 + - 7c3f156116944b51bc4db9b8572b4aaf response: status: code: 200 @@ -6438,17 +6439,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-34fe9e6e-e89d-4221-b818-0dea47fc81be + - req-7bdd9599-49c1-4f51-996d-5edc0c4b9e3d Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:25 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:25 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6460,7 +6461,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - cb489a165343492c92c22be3c96b6094 + - aeb6ae7012994cd9a7b865c5e994ecd6 response: status: code: 200 @@ -6471,17 +6472,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-3e1d199a-9d93-4328-b6a9-de856c52c8d8 + - req-143a214d-8e58-4900-ad19-17e2d28ccd21 Date: - - Tue, 14 Jan 2020 13:27:09 GMT + - Tue, 25 Feb 2020 08:11:26 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:09 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:26 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6493,7 +6494,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6d2de3b20a9469c90561dd960281837 + - 65293aade0d74dd7ad1e8ed5f938326f response: status: code: 200 @@ -6504,17 +6505,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-1b90d353-bc57-480a-a7ff-6e322ecacfc3 + - req-086c73c2-69ef-41b7-9ca4-f272e75477a0 Date: - - Tue, 14 Jan 2020 13:27:10 GMT + - Tue, 25 Feb 2020 08:11:27 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:27 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6526,7 +6527,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6535,11 +6536,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-c1fd68d6-12f0-4f65-8a69-8c76aa640e75 + - req-4e2df232-831a-4a2a-9e16-d4fdb8be7e64 Date: - - Tue, 14 Jan 2020 13:27:10 GMT + - Tue, 25 Feb 2020 08:11:28 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -6548,35 +6549,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:10 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:28 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -6588,7 +6589,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6599,17 +6600,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-371c163a-844f-4a50-bc2a-4fdda12ac20e + - req-6ace668b-d735-4d80-b936-aa4359310a77 Date: - - Tue, 14 Jan 2020 13:27:10 GMT + - Tue, 25 Feb 2020 08:11:28 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:29 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -6621,7 +6622,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6630,11 +6631,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-4127dc02-d318-4637-b872-c24a7f4aeba6 + - req-8e81e15f-d4e6-43a8-a51d-b33c5a8a505a Date: - - Tue, 14 Jan 2020 13:27:10 GMT + - Tue, 25 Feb 2020 08:11:29 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6643,28 +6644,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:30 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -6676,7 +6677,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6685,11 +6686,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-275a4391-912d-4c2d-9eb2-7b8a4ed08fb9 + - req-7d0b8759-fb04-4a18-ac97-45935a240212 Date: - - Tue, 14 Jan 2020 13:27:10 GMT + - Tue, 25 Feb 2020 08:11:30 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6698,28 +6699,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:31 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -6731,7 +6732,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6740,11 +6741,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-f3557bc9-13db-4949-85b8-8708f58964ee + - req-8734cfb2-3b8a-4b72-92ed-306f93becfda Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:32 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6753,28 +6754,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:32 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -6786,7 +6787,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6795,26 +6796,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-89681166-777d-4148-a158-b6dc608dedc6 + - req-0341c8ab-366f-416c-a354-990694a16071 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:33 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:33 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -6826,7 +6827,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6835,26 +6836,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-895a10a9-8ca9-4f6e-bf03-bfade3a916af + - req-9dc09478-4131-4f11-8459-21e3d5519253 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:34 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:34 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -6866,7 +6867,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e2878a05f3df4e2b835a5db25313d55b + - e532d369a92e4c62af04109b53991f80 response: status: code: 200 @@ -6875,29 +6876,29 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-bbad83a6-fb41-4047-8e77-cbf07dad0b30 + - req-01527724-0ca1-4bc8-b81e-1f3cab601c34 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:34 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6909,75 +6910,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d27b1084-e218-438e-957e-b01e1a182dff + - req-51fec777-b65c-4aad-9f09-07f184b5176d Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:11.460722", "expires": - "2020-01-14T14:27:11Z", "id": "772456cd81104dfcb1a1717fd1da1b6d", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["_90za1AtQ7iHhg0hhIvn5A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:35.960156", "expires": + "2020-02-25T09:11:35Z", "id": "ae5bb9015a184270b05e5745825d79e7", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["fZWf9tnnRS6dWCm8AuKmAw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:36 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6989,69 +6990,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-321d1c7e-4003-40e7-a25d-ad5007076441 + - req-6921dc46-30ca-44a3-8b6a-4dc978bad4af Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:11.553079", "expires": - "2020-01-14T14:27:11Z", "id": "d8e4d67e748f4878be1218c523d1942e", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["UDX6ecD-RAWy6G-8FXTA5A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:37.006777", "expires": + "2020-02-25T09:11:36Z", "id": "7e456022b364486da6fe117b0fef1fa2", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["T5vQVfllTAKs-5OODPYfuw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:37 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7069,69 +7070,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-27a01b1f-fe7c-4b87-b14b-9fdd818c1261 + - req-30aca782-d30b-4a47-826d-82d80f899200 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:11.649088", "expires": - "2020-01-14T14:27:11Z", "id": "ed38b08248e64a078caef730dac02387", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["n3jkVtiiTX-AusESUNaAdw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:11:37.993195", "expires": + "2020-02-25T09:11:37Z", "id": "487c6d95f962408cb0c3805c1402c360", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["QVHsbPaLTtCbZi4v2mZX_g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:38 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -7146,7 +7147,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -7157,115 +7158,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-c4a29c08-8b2b-42c3-91da-aeadddcd88c0 + - req-b16d49fe-a524-44dc-964a-4a5f9ddc5263 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:39 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:39 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7277,7 +7279,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -7288,112 +7290,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-f7d79bc0-5590-4234-8f19-521a4074fc38 + - req-c9d0b2d9-ce99-4913-8850-43952c597fe6 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:40 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:41 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -7408,7 +7411,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -7419,246 +7422,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-9196b1cb-7567-4cd7-a78f-5694d8ad636f + - req-af7c44fd-3b60-4164-9598-f7f010a8f462 Date: - - Tue, 14 Jan 2020 13:27:11 GMT + - Tue, 25 Feb 2020 08:11:42 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:11 GMT -- request: - method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Content-Type: - - application/json - Accept: - - application/json - X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Content-Length: - - '8299' - X-Openstack-Request-Id: - - req-c7b32cb9-0d64-450b-91c2-8c7f20cea27d - Date: - - Tue, 14 Jan 2020 13:27:12 GMT - body: - encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:43 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7670,7 +7543,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -7681,115 +7554,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-1e9bc3f3-ef8e-4875-8a0d-0252a8350912 + - req-1437b8ea-3b5d-4f8b-b804-0214a81164ea Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:43 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:44 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -7801,7 +7675,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -7812,117 +7686,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-4795d61b-01bd-4b4e-bd5d-c4676432260f + - req-4ab19d12-1cc9-4048-832f-3a3c12b488d6 Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:45 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:45 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=be64e82a-7735-4ae3-a390-b0fb6441c184 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7934,7 +7807,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -7945,245 +7818,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-915bb436-fca3-4969-a61a-20afb27418be + - req-12a68694-da65-455e-9fb7-3a2f88d66954 Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:46 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT -- request: - method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Content-Type: - - application/json - Accept: - - application/json - X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Content-Length: - - '8299' - X-Openstack-Request-Id: - - req-2de89a66-8f4b-4255-a16f-6442b846c7c4 - Date: - - Tue, 14 Jan 2020 13:27:12 GMT - body: - encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:47 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -8198,7 +7939,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -8209,116 +7950,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-99bef3da-6172-45d4-8164-22238eb61d43 + - req-a410331c-c0e5-4cff-8580-b07033879197 Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:48 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:48 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -8330,7 +8071,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -8341,113 +8082,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-f6f88aee-f8cb-43a2-9624-5ec8a8229a91 + - req-1447045d-76e3-406b-8488-1633dadbc8fd Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:49 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:50 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8462,7 +8203,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -8471,57 +8212,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-c0c6cf2b-84b6-4dd7-a0ac-93d5da9c6b99 + - req-bd7f5d83-ff86-4c3f-814b-fbd0f36fbf7a Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:50 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:50 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8533,7 +8272,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -8542,54 +8281,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-a42646f0-c320-4bd9-a331-8ccfbcfc7d49 + - req-041f5f30-3e36-4a21-b8d7-4053b5ee8d3a Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:51 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:52 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8604,7 +8341,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -8613,57 +8350,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-a01e0c32-4a15-4db2-a7bb-2125c98af0ea + - req-c1427cbb-2c18-4ef7-b919-518e23a5d89e Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:52 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:53 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8675,7 +8410,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -8684,54 +8419,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-e08b2e69-026b-435d-a7d5-13c22005e9c0 + - req-7a6a848d-69d1-42a5-b9d6-68e7eb00f03f Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:53 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:53 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8746,7 +8479,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -8755,57 +8488,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-e718a6fc-7f55-4299-91e3-9cbb4617bb4c + - req-b44f6d7c-70e3-459d-bb21-702a2de7db06 Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:54 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:54 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8817,7 +8548,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -8826,54 +8557,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-e45234cd-0959-463b-8dca-2c0230537e33 + - req-36b8ad04-ee38-46b9-8577-9a9e3411d7ae Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:55 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:56 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8888,7 +8617,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -8897,57 +8626,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-3be6056c-1654-4acb-9658-961dacb6284e + - req-4f263050-cabb-4475-9827-1320c7f1fcba Date: - - Tue, 14 Jan 2020 13:27:12 GMT + - Tue, 25 Feb 2020 08:11:56 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:12 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:56 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8959,7 +8686,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -8968,54 +8695,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-e90abd6b-bb59-4596-87ca-c795892a0d94 + - req-9a080e27-207e-4602-bba6-ed441bddae90 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:11:57 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:57 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -9030,7 +8755,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -9039,413 +8764,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-60fbd5c3-6df9-4222-b30a-1ff92332ef69 + - req-427490f9-42b1-4aa9-a1a7-aeb8a72eddc1 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:11:58 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:11:59 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -9457,7 +9186,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -9466,410 +9195,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-ca2e4aa7-10b3-459e-b623-e19903dec27a + - req-d7b7fa7b-ed5c-4622-95a4-29cf1e98a085 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:00 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:01 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -9884,7 +9617,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -9893,413 +9626,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-34891383-aaa3-4b95-a36d-e281f8db3445 + - req-324ffd03-3dc5-415f-a5a8-dfb4332c96e8 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:01 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:02 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -10311,7 +10048,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -10320,410 +10057,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-eb1ef619-2af6-4366-abb7-3e1db0570dcb + - req-046e0667-ce72-4859-b371-1edf6d471d3a Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:03 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:04 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -10738,7 +10479,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -10747,413 +10488,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-535a274b-06e2-415a-ae01-ee9ca80b35df + - req-c378afd2-6ce3-4c8f-841f-554aa1b64e84 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:04 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:05 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -11165,7 +10910,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -11174,410 +10919,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-278ee2ff-8b26-4f13-84a8-224a18b8f7ca + - req-705ec5c4-69ea-4d76-a125-fb1db8ada609 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:06 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:06 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -11592,7 +11341,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -11601,413 +11350,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-dbcd7772-f6b3-4142-af19-95d73cfe0251 + - req-9b2d0004-547d-4115-8c41-ba3c6a71b821 Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:07 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:07 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -12019,7 +11772,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -12028,410 +11781,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-fb597f33-c003-42bd-b0bd-64244ec8d2ae + - req-84e7d328-f367-4a08-b25c-fed839546a8e Date: - - Tue, 14 Jan 2020 13:27:13 GMT + - Tue, 25 Feb 2020 08:12:08 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:13 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:09 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12446,7 +12203,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -12457,44 +12214,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-05ccefc7-98e9-4b5a-b626-2a2ed00927a5 + - req-1cd64d73-1740-46af-8836-bf2fe64cb552 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:09 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12506,7 +12264,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -12517,41 +12275,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-26638b0a-fa50-4ce5-92c9-0c0b5d080ffe + - req-4474dd0b-b5f2-463c-aa88-f15568a61e66 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:11 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:11 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12566,7 +12325,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -12577,44 +12336,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-16a73b73-d21e-41bf-8e17-2525b771cac0 + - req-ef4b318a-cd4a-463f-92e3-4b730beb2153 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:12 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:12 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12626,7 +12386,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -12637,41 +12397,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-7e3d378f-faca-48de-a2f9-dd4ac9945f98 + - req-0f3e1783-2e64-4f8f-932b-36188fb47984 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:12 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:13 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12686,7 +12447,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -12697,44 +12458,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-aaeb7520-70e2-4e8b-adfa-51102adcdd0f + - req-8e9bf5ec-d66e-4ffc-a305-6c59fe6eda84 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:13 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:14 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12746,7 +12508,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -12757,41 +12519,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-19385b82-6f3a-453e-9f31-c0b0dc1ffd38 + - req-badc480e-1510-45a7-be55-0170e6492d0f Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:14 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:14 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12806,7 +12569,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -12817,44 +12580,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-b9736280-fbc9-4cc8-aacd-6536d874e12e + - req-cfc54492-3c74-40d4-863f-77720e8732e9 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:15 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12866,7 +12630,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -12877,41 +12641,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-df7d7663-8592-4444-9a99-286b3e5014b1 + - req-3ec78874-4d32-41bd-8223-b867593a94cd Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:16 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:16 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -12926,7 +12691,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -12935,202 +12700,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-f2422aa2-d197-402b-b314-40917c3919b0 + - req-9d2e78c1-401e-40d2-909d-e40816d4a2d1 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:17 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:18 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13142,7 +12907,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -13151,17 +12916,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-518df359-5700-4d3d-8060-b316c15b4952 + - req-65c78f21-3aea-4c6a-8644-3e90e532e3ef Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:19 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:19 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -13176,7 +12941,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -13185,202 +12950,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-0f438b57-890d-45bb-83e8-23ae35ed3289 + - req-6676be21-ec4d-4c54-bda3-49dfc85d89a4 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:20 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:20 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13392,7 +13157,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -13401,17 +13166,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-d60ec2ad-705e-4a0d-89b0-38472baaea78 + - req-7ba9fc8c-b969-4f06-b2e1-8da4892062ee Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:21 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:21 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -13426,7 +13191,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -13435,202 +13200,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-444f0ff2-b220-43f8-bdce-33f9d6fd6e57 + - req-378bcedd-2199-456c-a03f-5a231e01efd9 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:22 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:22 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13642,7 +13407,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -13651,17 +13416,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-77425235-89e2-4dd4-a7b4-ff4de27e904a + - req-3dd6e91c-5e0a-4243-9f46-478db102e4a6 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:23 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:23 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -13676,7 +13441,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -13685,202 +13450,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-141c6fc2-512b-4442-8e28-795ee2e32136 + - req-e5517290-1905-4756-b77a-11216bac3939 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:24 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:24 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13892,7 +13657,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -13901,17 +13666,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-5ad0598b-6744-40f7-a414-0b4942a5ef9a + - req-f3483b3a-9b2d-4060-bb9b-2a7306a63748 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:25 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:25 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -13926,7 +13691,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -13935,187 +13700,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-037b7607-968c-4d7c-88f7-4dcdce57e089 + - req-1348a80a-bf9a-42c5-9ad0-0c0fdc7f1341 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:26 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:27 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14127,7 +13893,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 772456cd81104dfcb1a1717fd1da1b6d + - 459feaa24a474a61a6670438d008bcdc response: status: code: 200 @@ -14136,17 +13902,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-2ec63314-f8d2-4021-891c-07929e52276d + - req-fd54b299-b697-4eaa-b1f1-b40ab755d95b Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:28 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:28 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -14161,7 +13927,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -14170,187 +13936,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-7fc0789b-d730-453c-a034-9cdfb364e019 + - req-e41b5f7e-3def-4a38-b53a-e5181e9db6b6 Date: - - Tue, 14 Jan 2020 13:27:14 GMT + - Tue, 25 Feb 2020 08:12:29 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:14 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:29 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14362,7 +14129,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d8e4d67e748f4878be1218c523d1942e + - ae5bb9015a184270b05e5745825d79e7 response: status: code: 200 @@ -14371,17 +14138,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-ef7717ad-24ea-408b-8d8d-ec5c827ad50f + - req-8478ac6f-1b6c-4fa7-adbd-009a62ff9e7b Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:30 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:30 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -14396,7 +14163,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -14405,187 +14172,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-2545d857-8071-4519-bf79-451a39486199 + - req-88860971-179d-423d-bdb7-17747da9912a Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:31 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:32 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14597,7 +14365,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5975c5b6fbca45699ad05b1747913f00 + - 7e456022b364486da6fe117b0fef1fa2 response: status: code: 200 @@ -14606,17 +14374,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-3726e81c-841d-4562-988b-96d4290424cb + - req-8f9f568d-ca9a-496c-a7d3-0a5410834459 Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:33 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:33 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -14631,7 +14399,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -14640,187 +14408,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-e3e0e54c-53b4-4afb-a361-9ba1d6a4f9c9 + - req-b75d95d8-4c78-4f6f-92b9-15b5ac1f1fc7 Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:34 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:34 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14832,7 +14601,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ed38b08248e64a078caef730dac02387 + - 487c6d95f962408cb0c3805c1402c360 response: status: code: 200 @@ -14841,17 +14610,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-2a13d4a4-631f-4be5-a7a7-27498dfd3d70 + - req-83b3ac1d-46be-45d8-8944-5f168dfcf195 Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:35 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -14869,70 +14638,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a2817c99-a90e-4cfb-a45e-055e55c8d622 + - req-6887ff39-22eb-40a9-b823-689c0edf6f61 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:15.879855", "expires": - "2020-01-14T14:27:15Z", "id": "cf4e292776144db69d1da6b72912d854", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["N9o7VW2BQdGW8BewB6gqPg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:37.368011", "expires": + "2020-02-25T09:12:37Z", "id": "140b4362cafc484db6ed7076388e0b50", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["tXsUsSxcRfKOt7yMvK1Umw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:37 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -14950,70 +14719,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:38 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0f99e843-51d5-4d2b-a548-d0deea234b8d + - req-9fec0a6a-2e79-4f1d-bb4d-c5ded058ab1d Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:15.963612", "expires": - "2020-01-14T14:27:15Z", "id": "e5afd66cc1fd409db6d516d54ab646da", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["WMvXJ-vdSEeOZtfjxh8xxA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:38.386763", "expires": + "2020-02-25T09:12:38Z", "id": "069111d54e544a9090755dd400ca709f", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["f4O5SFlRTS6oNhQhtN537w"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:15 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:38 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -15031,13 +14800,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:15 GMT + - Tue, 25 Feb 2020 08:12:39 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a1b27ac8-ba45-44fc-9c5d-9a41d1fbd804 + - req-0ddb0b43-d0d2-438f-be95-48cc23e34de2 Content-Length: - '370' Connection: @@ -15046,13 +14815,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:16.009985", "expires": - "2020-01-14T14:27:16Z", "id": "7da921c22c5a49abb3a3f227cecc31b2", "audit_ids": - ["XtNA6y2oRsSCdAbO0vs6KA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:39.410095", "expires": + "2020-02-25T09:12:39Z", "id": "8c1cd5cb068f42bbb019d8076851bab6", "audit_ids": + ["rP-xoj2cTZWG6VVnMG41wQ"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:39 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -15067,20 +14836,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7da921c22c5a49abb3a3f227cecc31b2 + - 8c1cd5cb068f42bbb019d8076851bab6 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:40 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-77e5798c-5734-471e-bc8e-3d6aa7c46ef4 + - req-08f270ab-fd01-4c27-b8ec-628a8c9824a5 Content-Length: - '500' Connection: @@ -15089,20 +14858,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:41 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -15114,75 +14883,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f17f0288-22cf-4d62-a270-24e53cb16487 + - req-a8a5a5fb-e5cb-48b6-b695-06ac965778b8 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:16.117458", "expires": - "2020-01-14T14:27:16Z", "id": "1df489e5af5c4c72a450d2efd1ffa0af", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["UtvsiociRzGkjPlCnHg63w"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:41.943242", "expires": + "2020-02-25T09:12:41Z", "id": "50b7ae6248a440f38246ee1b2a61b2b8", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["cwQ0EB-OTsuSu396YF-ztA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:42 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -15194,69 +14963,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-5152d86b-eaba-4f39-85d0-407fc5a474cb + - req-bed23829-1996-468c-bd67-a892c58155e8 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:16.201684", "expires": - "2020-01-14T14:27:16Z", "id": "04ca634cbc6c4c04a01f899d0ba33f7a", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["ZDvg7BSiRCumyuF0A_iu6w"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:42.853099", "expires": + "2020-02-25T09:12:42Z", "id": "bf08a7a1fca0401283c36f1ab37254e0", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["T0b_GtfzTCirk9Ebc2ldMA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:43 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -15274,72 +15043,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:43 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-26004d7c-9d09-436f-b11c-efba5d3669e6 + - req-e723e99f-9f56-4819-a2b7-bf11cb479f77 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:16.287214", "expires": - "2020-01-14T14:27:16Z", "id": "4d3265b9fa49404181e76b57fbe35fda", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["-AxMJ1t_S_C39d146W6imA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:12:43.684597", "expires": + "2020-02-25T09:12:43Z", "id": "57e98a35cc144fa28cad6e1c0951d78a", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["tSOmxvCaStmSp4B5ibwoHg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:43 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15351,30 +15120,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5ec649a1-85f0-4190-8cc4-98adc872a534 + - req-1b61d318-4e32-45d3-8e55-e9b64d701bf1 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-5ec649a1-85f0-4190-8cc4-98adc872a534 + - req-1b61d318-4e32-45d3-8e55-e9b64d701bf1 Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:44 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:45 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15386,30 +15155,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-f7867753-7d0a-44d5-8fda-1806d6f9c98a + - req-5cd21342-39fe-4410-bf8f-f7ae98729aa3 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-f7867753-7d0a-44d5-8fda-1806d6f9c98a + - req-5cd21342-39fe-4410-bf8f-f7ae98729aa3 Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:45 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:46 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15421,30 +15190,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0c32be16-720d-4740-952d-91aea47cd0e1 + - req-45e522ed-afea-43bb-9971-7787b963a67e Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-0c32be16-720d-4740-952d-91aea47cd0e1 + - req-45e522ed-afea-43bb-9971-7787b963a67e Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:47 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:47 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15456,120 +15225,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-461a171a-e491-4683-80ce-450d616e24f9 + - req-d20ab59e-6742-4d98-8ee1-f84c5560a1d3 Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-461a171a-e491-4683-80ce-450d616e24f9 + - req-d20ab59e-6742-4d98-8ee1-f84c5560a1d3 Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:48 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:49 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -15581,30 +15350,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7a60fffd-cc55-4c38-8860-2efb0d221092 + - req-ca558ac1-cf85-4343-b4a5-993dbfed1f88 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-7a60fffd-cc55-4c38-8860-2efb0d221092 + - req-ca558ac1-cf85-4343-b4a5-993dbfed1f88 Date: - - Tue, 14 Jan 2020 13:27:16 GMT + - Tue, 25 Feb 2020 08:12:50 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:16 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:50 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -15616,30 +15385,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1eabd981-2351-4309-9586-87f1ac83cc51 + - req-72b88591-f438-49a6-8c4b-feb631b47e69 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-1eabd981-2351-4309-9586-87f1ac83cc51 + - req-72b88591-f438-49a6-8c4b-feb631b47e69 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:50 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:51 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15651,30 +15420,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c5cf6076-2a3c-4257-b72e-97bbb7b602b1 + - req-620028b2-1e30-4da2-94b2-a16367adb9c2 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-c5cf6076-2a3c-4257-b72e-97bbb7b602b1 + - req-620028b2-1e30-4da2-94b2-a16367adb9c2 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:52 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:52 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail body: encoding: US-ASCII string: '' @@ -15686,30 +15455,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7ea23bb1-2076-42df-8cb0-807e913c86c8 + - req-bb008c72-0139-4530-9cbc-8bbade6d9f4f Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-7ea23bb1-2076-42df-8cb0-807e913c86c8 + - req-bb008c72-0139-4530-9cbc-8bbade6d9f4f Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:52 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:53 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15721,30 +15490,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-92b4ae33-79e6-4cc0-a590-4cfc3d0f0192 + - req-c63df0d2-e1f4-4fa5-b9ce-f81a309e5821 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-92b4ae33-79e6-4cc0-a590-4cfc3d0f0192 + - req-c63df0d2-e1f4-4fa5-b9ce-f81a309e5821 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:54 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:54 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail body: encoding: US-ASCII string: '' @@ -15756,30 +15525,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-74fa4bcc-d163-404b-8de8-de9de8776233 + - req-cc43e57c-7b50-4502-982e-a4d3d9a96cb0 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-74fa4bcc-d163-404b-8de8-de9de8776233 + - req-cc43e57c-7b50-4502-982e-a4d3d9a96cb0 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:54 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:55 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15791,30 +15560,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-41d50717-8058-4af2-a86d-7df4afe352e4 + - req-e1a6e858-25cc-4ae0-a9b5-ed3b601c61b5 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-41d50717-8058-4af2-a86d-7df4afe352e4 + - req-e1a6e858-25cc-4ae0-a9b5-ed3b601c61b5 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:55 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:55 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail body: encoding: US-ASCII string: '' @@ -15826,44 +15595,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-2a87158c-efa2-40c6-a40b-a3af7597a9ee + - req-2b8d5e14-9769-4342-b6c3-b3f31df729ea Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-2a87158c-efa2-40c6-a40b-a3af7597a9ee + - req-2b8d5e14-9769-4342-b6c3-b3f31df729ea Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:56 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:56 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15875,44 +15644,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-685fc378-19b6-4375-a378-bab4bd63c0e9 + - req-db3eb82b-2183-4c3c-bd65-ba722bc7e409 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-685fc378-19b6-4375-a378-bab4bd63c0e9 + - req-db3eb82b-2183-4c3c-bd65-ba722bc7e409 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:58 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:58 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail body: encoding: US-ASCII string: '' @@ -15924,30 +15693,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5ec9aa88-350e-41ae-b923-6e49f0fbf3ae + - req-3d4bcb6d-09d3-4c85-b2a7-3741eefa8dfd Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-5ec9aa88-350e-41ae-b923-6e49f0fbf3ae + - req-3d4bcb6d-09d3-4c85-b2a7-3741eefa8dfd Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:59 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:59 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15959,30 +15728,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-3040e37e-8839-49a7-93c0-c6148ee0d0cc + - req-c0852437-e21f-44d6-b4b4-2c8baf25959a Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-3040e37e-8839-49a7-93c0-c6148ee0d0cc + - req-c0852437-e21f-44d6-b4b4-2c8baf25959a Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:12:59 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:12:59 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail body: encoding: US-ASCII string: '' @@ -15994,30 +15763,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-bd1f494b-c66b-4a9e-b832-240e095e6584 + - req-a01b3239-92aa-4f77-8542-76eb857056d1 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-bd1f494b-c66b-4a9e-b832-240e095e6584 + - req-a01b3239-92aa-4f77-8542-76eb857056d1 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:00 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:00 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -16029,30 +15798,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b67d282a-46d5-475d-9f6a-642abd9c1124 + - req-a0f2c5bf-b5a8-40f5-a9f9-7e637ccc10d4 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-b67d282a-46d5-475d-9f6a-642abd9c1124 + - req-a0f2c5bf-b5a8-40f5-a9f9-7e637ccc10d4 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:01 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:01 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail body: encoding: US-ASCII string: '' @@ -16064,30 +15833,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0b3ecbd2-5e66-44fd-a651-3a3540bb3959 + - req-9e6aca11-405b-40e0-a65c-c37b7c7f66d9 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-0b3ecbd2-5e66-44fd-a651-3a3540bb3959 + - req-9e6aca11-405b-40e0-a65c-c37b7c7f66d9 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:02 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:02 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -16099,30 +15868,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-9db82d5c-2fbd-450c-881f-921bdd02cf83 + - req-34dcdc39-e7f7-4c1d-bb88-d0e933e7e473 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-9db82d5c-2fbd-450c-881f-921bdd02cf83 + - req-34dcdc39-e7f7-4c1d-bb88-d0e933e7e473 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:03 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:03 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail body: encoding: US-ASCII string: '' @@ -16134,30 +15903,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-a7c2998d-6d1f-4369-a439-489e01fc97d4 + - req-2e6a17de-dc63-441a-9671-edda10e2d0c0 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-a7c2998d-6d1f-4369-a439-489e01fc97d4 + - req-2e6a17de-dc63-441a-9671-edda10e2d0c0 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:04 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:04 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -16169,30 +15938,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-917b15bc-0f33-4a03-b82a-936c9ae3a058 + - req-cb01803e-7fee-4492-80ee-20d47030e70b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-917b15bc-0f33-4a03-b82a-936c9ae3a058 + - req-cb01803e-7fee-4492-80ee-20d47030e70b Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:05 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:05 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16204,37 +15973,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b2d7c3cf-d2fe-4863-8fab-69ba0cbaec51 + - req-c8353c6f-cc4d-4689-b7a2-78afbbf348e7 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-b2d7c3cf-d2fe-4863-8fab-69ba0cbaec51 + - req-c8353c6f-cc4d-4689-b7a2-78afbbf348e7 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:06 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:06 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16246,37 +16015,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1df489e5af5c4c72a450d2efd1ffa0af + - '069111d54e544a9090755dd400ca709f' response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-df753369-8f27-4346-9e13-ed1a0bb987ca + - req-8b99c9d6-c6dd-4c48-86c7-f001ca84f037 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-df753369-8f27-4346-9e13-ed1a0bb987ca + - req-8b99c9d6-c6dd-4c48-86c7-f001ca84f037 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:07 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:07 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16288,37 +16057,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-cbc7d54c-3682-4709-bee4-e7f536ae9395 + - req-b91be046-bd8b-45ae-828a-e5879cb2c006 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-cbc7d54c-3682-4709-bee4-e7f536ae9395 + - req-b91be046-bd8b-45ae-828a-e5879cb2c006 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:08 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:08 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16330,37 +16099,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04ca634cbc6c4c04a01f899d0ba33f7a + - 50b7ae6248a440f38246ee1b2a61b2b8 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-a57b9475-0642-411e-ab6d-434e479c7dcf + - req-d1ad8975-34e1-4d99-89a6-e0bead80d070 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-a57b9475-0642-411e-ab6d-434e479c7dcf + - req-d1ad8975-34e1-4d99-89a6-e0bead80d070 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:09 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:09 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16372,37 +16141,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-44c90c99-a77c-46d4-9782-54ecd6f6bd57 + - req-4abce7f4-91e4-4a18-baa1-f3b4605052e6 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-44c90c99-a77c-46d4-9782-54ecd6f6bd57 + - req-4abce7f4-91e4-4a18-baa1-f3b4605052e6 Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:10 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:10 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16414,37 +16183,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - e5afd66cc1fd409db6d516d54ab646da + - bf08a7a1fca0401283c36f1ab37254e0 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-12aaafc5-bc9e-49bf-ae3a-8bad9c0fe942 + - req-c07e083a-7d42-417d-8f7f-381624e48a6e Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-12aaafc5-bc9e-49bf-ae3a-8bad9c0fe942 + - req-c07e083a-7d42-417d-8f7f-381624e48a6e Date: - - Tue, 14 Jan 2020 13:27:17 GMT + - Tue, 25 Feb 2020 08:13:11 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:11 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16456,37 +16225,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-700f2020-9d79-489c-acca-935f017ff76b + - req-07e6acdd-77e1-4abd-bf79-97b2937c80b9 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-700f2020-9d79-489c-acca-935f017ff76b + - req-07e6acdd-77e1-4abd-bf79-97b2937c80b9 Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:12 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:12 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16498,34 +16267,34 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4d3265b9fa49404181e76b57fbe35fda + - 57e98a35cc144fa28cad6e1c0951d78a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0cd17531-9604-41fb-8954-e4be643f0d57 + - req-9903c413-fc3e-49b6-8dcf-008cf8b94834 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-0cd17531-9604-41fb-8954-e4be643f0d57 + - req-9903c413-fc3e-49b6-8dcf-008cf8b94834 Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:13 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:13 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16543,70 +16312,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:14 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d8353623-fd37-46aa-8f08-16c78f2dc2d7 + - req-ec2fbabc-7ae2-45e7-b668-9a22b04f5090 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.255304", "expires": - "2020-01-14T14:27:18Z", "id": "7936c66a87b448bf93ad3121ec252240", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["dY9nsT72Sdu1EJagnnC3FQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:14.179218", "expires": + "2020-02-25T09:13:14Z", "id": "8ee61e4877694ebe8a5aee8105d0b4c5", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["oawWJY6iRUmc_qkfSdabWQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:14 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16624,70 +16393,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:14 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-487ba6c3-dce4-411f-9b3c-ba5a58637c29 + - req-345a1bb8-f3b2-4ef5-9ccc-240295347d0b Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.406421", "expires": - "2020-01-14T14:27:18Z", "id": "db6931cbf7be4dc2a9182941e4a4f5df", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["OJY0mMCeQpqAwVkXZnryIw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:15.029599", "expires": + "2020-02-25T09:13:15Z", "id": "90094f456e77436e8bf222fc98449ef6", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["bEv3nykLQyyualf4oPhLUQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:15 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16705,13 +16474,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:15 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-28976753-7f10-4d16-9634-1279349d08b7 + - req-b8d78f19-2982-4dfa-95ee-6736281fb899 Content-Length: - '370' Connection: @@ -16720,13 +16489,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.478528", "expires": - "2020-01-14T14:27:18Z", "id": "5b17fb6a77264c999c06f491d2e614b8", "audit_ids": - ["jm0fmlEARuyA_MiUQOZNYA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:15.718832", "expires": + "2020-02-25T09:13:15Z", "id": "7ddde5efa6a54954a3ae1aa8d0dd8791", "audit_ids": + ["bL6bxPBFTbOEk74A70GeeA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:16 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -16741,20 +16510,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5b17fb6a77264c999c06f491d2e614b8 + - 7ddde5efa6a54954a3ae1aa8d0dd8791 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:16 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-abca4ab4-a3cd-424a-856f-b7045b1bc6a6 + - req-f08e93c5-be64-4126-871f-e48eecd83739 Content-Length: - '500' Connection: @@ -16763,20 +16532,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:17 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -16788,75 +16557,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:18 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f97b0cb8-8f0a-430c-8ee3-29d9a323cf00 + - req-69ef165b-ab79-49fb-95df-fb06d159715f Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.604021", "expires": - "2020-01-14T14:27:18Z", "id": "d635ecac4c5648e399cdc2ce79d3606b", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["m02ALKsEQJOpNW8Lv6kVow"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:18.283063", "expires": + "2020-02-25T09:13:18Z", "id": "5e09c2744da14df3a1e275e01715d898", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["i8CrNHWiR_OXxwuE4LzrWA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:18 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -16868,69 +16637,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:19 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f1f18fd7-42c9-48bf-b6e2-3f4fed390cd8 + - req-9bf98450-e1c6-4b34-a6a3-d7e6cbeb6159 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.725567", "expires": - "2020-01-14T14:27:18Z", "id": "7b7f15576d4a454391fa35f05c4508d8", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["45fLCWuIR0-iHQbreBLtng"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:19.351316", "expires": + "2020-02-25T09:13:19Z", "id": "e9afc90abf1c4bec9db389211cc9db60", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["q1pVkawpRPOxmUzW1VYq7A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:19 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16948,72 +16717,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:20 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a8d03435-04b0-4129-ad8d-a4876e48e6d5 + - req-b3390226-4c53-48fd-b98c-292b8232c165 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:18.840061", "expires": - "2020-01-14T14:27:18Z", "id": "2a2d8d8cf07a455db29b12c03fc05327", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["-9lPZ3BSSbyQbjeqxC6ZVQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:20.399738", "expires": + "2020-02-25T09:13:20Z", "id": "cd59bcc715874625809af9eda1650a54", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["52QU4K_7RwaT6zwK_ZEEkw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:20 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -17025,7 +16794,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d635ecac4c5648e399cdc2ce79d3606b + - 90094f456e77436e8bf222fc98449ef6 response: status: code: 200 @@ -17038,25 +16807,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008438.95266' + - '1582618401.64027' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008438.95266' + - '1582618401.64027' X-Trans-Id: - - tx0ae7abb71d0f4f9991854-005e1dc1b6 + - tx29bb94af3c034d7483991-005e54d721 Date: - - Tue, 14 Jan 2020 13:27:18 GMT + - Tue, 25 Feb 2020 08:13:21 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:21 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -17068,7 +16837,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7b7f15576d4a454391fa35f05c4508d8 + - 5e09c2744da14df3a1e275e01715d898 response: status: code: 200 @@ -17081,25 +16850,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008439.04695' + - '1582618402.82677' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008439.04695' + - '1582618402.82677' X-Trans-Id: - - tx97ccb4f18e8a46db90906-005e1dc1b6 + - tx407f42c1dc7545c6bdf27-005e54d722 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:22 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:22 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -17111,7 +16880,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - db6931cbf7be4dc2a9182941e4a4f5df + - e9afc90abf1c4bec9db389211cc9db60 response: status: code: 200 @@ -17124,25 +16893,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008439.13319' + - '1582618403.68155' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008439.13319' + - '1582618403.68155' X-Trans-Id: - - txf558d96511324701983d8-005e1dc1b7 + - tx0114b2c2f39b4ce7bdec2-005e54d723 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:23 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:23 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -17154,7 +16923,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a2d8d8cf07a455db29b12c03fc05327 + - cd59bcc715874625809af9eda1650a54 response: status: code: 200 @@ -17169,7 +16938,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -17183,18 +16952,18 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - tx9dcf6b9a6bd24044ad006-005e1dc1b7 + - txe79134b40c66454b8ab6b-005e54d724 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:24 GMT body: encoding: ASCII-8BIT string: '[{"count": 3, "bytes": 33, "name": "dir_1"}, {"count": 0, "bytes": 0, "name": "dir_2"}, {"count": 0, "bytes": 0, "name": "dir_3"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:24 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000&marker=dir_3 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000&marker=dir_3 body: encoding: US-ASCII string: '' @@ -17206,7 +16975,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a2d8d8cf07a455db29b12c03fc05327 + - cd59bcc715874625809af9eda1650a54 response: status: code: 200 @@ -17221,7 +16990,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -17235,17 +17004,17 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - tx44923444cedd4b8094e08-005e1dc1b7 + - tx50b17fd4f1c44de990044-005e54d725 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:25 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:25 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_1?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_1?format=json body: encoding: US-ASCII string: '' @@ -17257,7 +17026,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a2d8d8cf07a455db29b12c03fc05327 + - cd59bcc715874625809af9eda1650a54 response: status: code: 200 @@ -17274,26 +17043,26 @@ http_interactions: X-Container-Bytes-Used: - '33' X-Timestamp: - - '1578845111.31102' + - '1582546156.98956' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - tx53f3bbecacd646dc9ad3c-005e1dc1b7 + - txafff17c40ebf489cbdbfd-005e54d725 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:26 GMT body: encoding: ASCII-8BIT - string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-01-12T16:05:11.479940", + string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-02-24T12:09:18.782440", "bytes": 11, "name": "file_1", "content_type": "application/octet-stream"}, - {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-01-12T16:05:11.605500", + {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-02-24T12:09:19.306020", "bytes": 11, "name": "file_2", "content_type": "application/octet-stream"}, - {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-01-12T16:05:11.700990", + {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-02-24T12:09:20.144630", "bytes": 11, "name": "file_3", "content_type": "application/octet-stream"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:26 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_2?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_2?format=json body: encoding: US-ASCII string: '' @@ -17305,7 +17074,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a2d8d8cf07a455db29b12c03fc05327 + - cd59bcc715874625809af9eda1650a54 response: status: code: 200 @@ -17322,21 +17091,21 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845111.87461' + - '1582546162.13347' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - tx94cb74c1a2cc451b94cb5-005e1dc1b7 + - tx7adbb9298ec84353bb812-005e54d726 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:26 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:27 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_3?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_3?format=json body: encoding: US-ASCII string: '' @@ -17348,7 +17117,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2a2d8d8cf07a455db29b12c03fc05327 + - cd59bcc715874625809af9eda1650a54 response: status: code: 200 @@ -17365,16 +17134,16 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845112.04818' + - '1582546164.45411' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - txc10f35e936984cb9b4d5e-005e1dc1b7 + - tx86c96481daa84a409b171-005e54d727 Date: - - Tue, 14 Jan 2020 13:27:19 GMT + - Tue, 25 Feb 2020 08:13:27 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:19 GMT -recorded_with: VCR 5.0.0 + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:28 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_fast_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_fast_refresh.yml index 8d4e9cf47..9e62a7641 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_fast_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_fast_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:16 GMT + - Tue, 25 Feb 2020 08:13:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-625f51da-3de8-4508-b5b2-5936d3e3fff1 + - req-aea4de8a-e21a-46fb-8b75-4f36e71a1641 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:17.030897", "expires": - "2020-01-14T14:28:17Z", "id": "ddf4821321b945579582ae1fb89bdecd", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["tJv26FowSnecb9rQB8mKPg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:32.704541", "expires": + "2020-02-25T09:13:32Z", "id": "63ec2b65b73844409f4a9cace7012464", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["j8QaKy2HQmGwvCIxl3MHWA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:33 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:33 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,11 +114,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:34 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-availability-zone body: encoding: US-ASCII string: '' @@ -130,7 +130,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -143,15 +143,15 @@ http_interactions: Content-Length: - '97' X-Compute-Request-Id: - - req-3c156523-bd43-4318-b9ef-e93deab2345f + - req-1260770e-dc1b-44f5-9c06-5648ba072946 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:34 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "hosts": null, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -169,73 +169,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-6a0dd6e6-4e03-48a8-bdea-dc01518bbcff + - req-e6f361ec-b04a-494b-8d09-aeb3997a4bed Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:17.266151", "expires": - "2020-01-14T14:28:17Z", "id": "7ce9548c40be4c3abe122d0f71e4c41b", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["HDpjn5SvR6O12H_baIK8vg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:35.889734", "expires": + "2020-02-25T09:13:35Z", "id": "76e87fc7d87d4a85ae0baaf9010d125a", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["adcQWwvmRMajFXdKAFbiMA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:36 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone.json + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/os-availability-zone.json body: encoding: US-ASCII string: '' @@ -247,31 +247,31 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5644b607-7dd4-44d2-b0bf-1356a85fd5c1 + - req-fe9f2e10-7c71-40d5-aca1-ae80b4daedbb Content-Type: - application/json Content-Length: - '82' X-Openstack-Request-Id: - - req-5644b607-7dd4-44d2-b0bf-1356a85fd5c1 + - req-fe9f2e10-7c71-40d5-aca1-ae80b4daedbb Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:37 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:37 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?all_tenants=True&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?all_tenants=True&limit=1000 body: encoding: US-ASCII string: '' @@ -283,7 +283,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -294,31 +294,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-7076f6dc-0485-4122-a97d-8f040b5ac5a3 + - req-c5ebc6ef-bb84-4458-bfad-3e8bdf593258 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:38 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:28:12.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:13:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:28:13.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:28:12.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:13:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:13:33.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:28:14.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:28:12.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + "2020-02-25T08:13:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:13:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:38 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?all_tenants=True&limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?all_tenants=True&limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -330,7 +330,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -341,31 +341,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-45bb7b13-1e7b-4797-b17d-fecd0481abd5 + - req-6a426d33-0c3d-4da6-b438-df9ca79e651c Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:38 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:28:12.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:13:34.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:28:13.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:28:12.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:13:36.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:13:33.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:28:14.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:28:12.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + "2020-02-25T08:13:32.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:13:37.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:39 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000 body: encoding: US-ASCII string: '' @@ -377,7 +377,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -388,49 +388,50 @@ http_interactions: Content-Type: - application/json Content-Length: - - '3161' + - '3133' X-Compute-Request-Id: - - req-9240e615-6d84-4230-8272-88f258bf9dee + - req-b3c78aa4-1d00-4028-8daf-c08f309c0450 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:39 GMT body: encoding: ASCII-8BIT - string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", + string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/2", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/2", + 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/2", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/2", "rel": "bookmark"}], "ram": 2048, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/3", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/3", + 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/3", "rel": "bookmark"}], "ram": 4096, "OS-FLV-DISABLED:disabled": false, "vcpus": 2, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 40, "id": "3"}, {"name": "m1.large", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/4", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/4", + 0, "disk": 40, "id": "3"}, {"name": "m1.ems_refresh_spec", "links": [{"href": + "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": + 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}, {"name": "m1.large", + "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/4", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/4", "rel": "bookmark"}], "ram": 8192, "OS-FLV-DISABLED:disabled": false, "vcpus": 4, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/5", + 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/5", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/5", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec", "links": [{"href": - "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": - 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}, {"name": "m1.ems_refresh_spec_private", - "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", + 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec_private", "links": + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": false, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + 0, "disk": 160, "id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:40 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=c75b1d50-032c-4c2b-b762-a6e6568c64c0 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=610a5fc0-2e7b-4e06-af16-c70148b858e3 body: encoding: US-ASCII string: '' @@ -442,7 +443,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -455,14 +456,14 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-872f566e-08f3-4b13-ae47-b08074c1b548 + - req-3ec25a58-ff3d-414d-8b82-d8ec2e3b6467 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:41 GMT body: encoding: ASCII-8BIT string: '{"flavors": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:41 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -480,13 +481,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9a11e90a-7f97-4e28-ac02-3b96b49dfed4 + - req-2e65a793-5b54-44ae-aab2-1f28410555f8 Content-Length: - '370' Connection: @@ -495,13 +496,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:17.702094", "expires": - "2020-01-14T14:28:17Z", "id": "507befe9fc7b4c36b132b20e0c29886a", "audit_ids": - ["41LtGWEHTlmpaNaPRwejAQ"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:42.337348", "expires": + "2020-02-25T09:13:42Z", "id": "cbd0bc381abe42dea8a6b3187bb2abf8", "audit_ids": + ["78IsQ2baQxSBlzD7pkRx-w"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:42 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -516,20 +517,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 507befe9fc7b4c36b132b20e0c29886a + - cbd0bc381abe42dea8a6b3187bb2abf8 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:43 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-aac45ff4-7dad-4f08-8892-4957a1c1eed9 + - req-8a5bb0bd-4c3e-47fb-978c-bab531a5de2b Content-Length: - '500' Connection: @@ -538,17 +539,17 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0/os-flavor-access + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3/os-flavor-access body: encoding: US-ASCII string: '' @@ -560,7 +561,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -573,15 +574,15 @@ http_interactions: Content-Length: - '123' X-Compute-Request-Id: - - req-430f907d-a40f-47e6-a816-28be0003ba1a + - req-4477fcf0-9fca-45a0-ba99-ba4f5c2086e4 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:44 GMT body: encoding: ASCII-8BIT - string: '{"flavor_access": [{"tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "flavor_id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + string: '{"flavor_access": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "flavor_id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:45 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -599,70 +600,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:45 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-28ff851e-2cf9-4211-9a55-502c4ae550de + - req-cefa319f-ec8b-4ec8-aa42-5ed9f2bd8dc1 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:17.862659", "expires": - "2020-01-14T14:28:17Z", "id": "65d4745e81004662bf218a9a1bbf62f3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["i9oXe95OQAqUC7-i0Wsxzw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:45.818977", "expires": + "2020-02-25T09:13:45Z", "id": "94971dd7d8c84d908d20deb24348f8fb", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["t4PKUjGfRpqqhej_c3I8Dw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:17 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:45 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images @@ -677,7 +678,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 65d4745e81004662bf218a9a1bbf62f3 + - 94971dd7d8c84d908d20deb24348f8fb response: status: code: 200 @@ -688,54 +689,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-cd3b119e-9758-4940-beb6-f69d8e44e540 + - req-151addce-0c89-4bc7-ab36-7e2ce9786594 Date: - - Tue, 14 Jan 2020 13:28:17 GMT + - Tue, 25 Feb 2020 08:13:46 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:46 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -747,7 +748,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 65d4745e81004662bf218a9a1bbf62f3 + - 94971dd7d8c84d908d20deb24348f8fb response: status: code: 200 @@ -758,17 +759,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-9a8dd7d9-33b5-4a60-ba4d-fa3e5cd55f7c + - req-460bf611-6553-41df-804c-7be3fe4106a0 Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:47 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:47 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?all_tenants=True&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?all_tenants=True&limit=1000 body: encoding: US-ASCII string: '' @@ -780,7 +781,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -793,22 +794,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-aa9cf3f7-27d5-4922-afb4-7cffe33c90ff + - req-7421c2cd-38e5-4186-8590-6531e939ce6f Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:48 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:48 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?all_tenants=True&limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?all_tenants=True&limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -820,7 +821,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -833,19 +834,19 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-66a18794-9a73-4011-86c7-24c6076f41c9 + - req-fc727339-d6b8-47a5-997a-7bb9443816d7 Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:49 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:49 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -863,76 +864,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-55605b38-de41-4d44-b660-264216aafc65 + - req-c7a681b0-532f-4617-8d70-081517945de6 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:18.339727", "expires": - "2020-01-14T14:28:18Z", "id": "1a4dd40d8808467ca2e682c52b6d470c", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["QbleKpbJRQGnp4szgKo7RA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:50.241780", "expires": + "2020-02-25T09:13:50Z", "id": "63c11221d313492e8ab97a9f06d35ce5", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["Hch398BPSjylH0iiGRDuEg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:50 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -944,75 +945,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:51 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a30b07a4-a185-4b16-b156-38f0a3495018 + - req-d6a875cd-0ae8-47d3-8e51-7abca8568adb Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:18.428524", "expires": - "2020-01-14T14:28:18Z", "id": "c003d02a3fbc46a68f4fbdae92950b8d", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["uXZ2HxwYRaioSq-YnkyHSw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:51.706368", "expires": + "2020-02-25T09:13:51Z", "id": "8b0c8789ac2c4d08be48feffdb4b8e74", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["rWPRKo3PQzyCtfAyWgptMg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1024,69 +1025,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c2801915-2ae1-42b7-830b-d53598994f0e + - req-f7ecf6e1-9588-4296-b5c8-493ebf521001 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:18.532760", "expires": - "2020-01-14T14:28:18Z", "id": "b14d794fa8ef4af9b95e41c85a16a886", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["KL0SOqfbQ6-n2zZ6m9hVkw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:52.826975", "expires": + "2020-02-25T09:13:52Z", "id": "0491b9b8f78e41788348f8e7ea88b51a", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["H83xWtHtRTK-lBbWYz43JQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1104,72 +1105,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:53 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-6efb8a41-114a-4d2c-b547-3f4611716964 + - req-9370647e-7472-4c8e-b0a8-879243e79acd Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:18.640267", "expires": - "2020-01-14T14:28:18Z", "id": "c34ff1dad0d4401eb21a01b7d75e64c3", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["QI__WUEuTR-5WQNTd2xYEA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:13:53.856063", "expires": + "2020-02-25T09:13:53Z", "id": "bd3bab40a70d4ed4a40ee1989b587faf", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["hxbh8R98SKmRrLX88qzVkA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:54 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -1181,7 +1182,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c003d02a3fbc46a68f4fbdae92950b8d + - 63c11221d313492e8ab97a9f06d35ce5 response: status: code: 200 @@ -1192,17 +1193,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-b0fed846-233a-41dd-b488-85b666c4ad40 + - req-bbe9a0fb-948d-4437-8a05-f384feda55fa Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:54 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:54 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -1214,7 +1215,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b14d794fa8ef4af9b95e41c85a16a886 + - 8b0c8789ac2c4d08be48feffdb4b8e74 response: status: code: 200 @@ -1225,17 +1226,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-7383e4c3-0bcf-4a08-8579-403ec6a3efd1 + - req-f5bf8413-06f6-4195-af4a-818694067ba8 Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:55 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:55 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -1247,7 +1248,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1a4dd40d8808467ca2e682c52b6d470c + - '0491b9b8f78e41788348f8e7ea88b51a' response: status: code: 200 @@ -1258,17 +1259,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-132c92ca-beae-41b6-b6a7-930119584412 + - req-edb86bfb-e230-4c58-b41a-6b77c7952572 Date: - - Tue, 14 Jan 2020 13:28:18 GMT + - Tue, 25 Feb 2020 08:13:56 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:18 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:56 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -1280,7 +1281,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1289,11 +1290,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-0d7dcf01-972f-477b-9bf0-10ec88744bae + - req-b1955329-b93c-4bb8-aae1-22542ea002f9 Date: - - Tue, 14 Jan 2020 13:28:19 GMT + - Tue, 25 Feb 2020 08:13:58 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -1302,35 +1303,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:19 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:58 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -1342,7 +1343,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1353,17 +1354,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-575133dd-48a7-461c-bdcd-6170ef99e91d + - req-85e94b2a-f678-43c7-9548-a20c96995fc7 Date: - - Tue, 14 Jan 2020 13:28:19 GMT + - Tue, 25 Feb 2020 08:13:58 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:13:59 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -1375,7 +1376,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1384,11 +1385,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-81407acf-beb7-430d-b3dc-363ba44f028c + - req-1dae12b8-61be-451b-956a-49bc0e34629d Date: - - Tue, 14 Jan 2020 13:28:19 GMT + - Tue, 25 Feb 2020 08:14:00 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -1397,28 +1398,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:01 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -1430,7 +1431,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1439,11 +1440,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-4b49bd23-7190-4f0b-a7d1-3ac6b9fbe756 + - req-68462b58-31f8-4877-96a9-951db6157a9f Date: - - Tue, 14 Jan 2020 13:28:19 GMT + - Tue, 25 Feb 2020 08:14:01 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -1452,28 +1453,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:19 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:02 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -1485,7 +1486,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1494,11 +1495,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-4f74a30f-6025-402c-b354-d605337ff672 + - req-c725d65d-5846-4d24-9fe3-9c6b8769866f Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:03 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -1507,28 +1508,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:03 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/template body: encoding: US-ASCII string: '' @@ -1540,7 +1541,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1551,9 +1552,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-d89cd1b5-783a-4555-9978-cebb30f75d8f + - req-11dafa96-3018-4901-8766-28bbeefa366e Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:04 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -1609,11 +1610,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:04 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -1625,7 +1626,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1634,26 +1635,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-16038105-dabf-421d-aa3d-baf75830c740 + - req-e4127fd6-d8bb-47e3-aac4-d55a90405f4d Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:05 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:05 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/detail?all_tenants=True&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/detail?all_tenants=True&limit=1000 body: encoding: US-ASCII string: '' @@ -1665,7 +1666,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1676,200 +1677,200 @@ http_interactions: Content-Type: - application/json Content-Length: - - '17285' + - '17413' X-Compute-Request-Id: - - req-fea6a798-4f76-400a-8c81-f7f2223271e5 + - req-b167d07c-9400-43ca-ba2d-eb6bcc4854b6 Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:06 GMT body: encoding: ASCII-8BIT - string: '{"servers": [{"status": "ACTIVE", "updated": "2020-01-13T14:54:49Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", "version": 4, "addr": "192.168.1.10", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", + string: '{"servers": [{"status": "ACTIVE", "updated": "2020-02-24T12:11:21Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "192.168.1.7", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "172.16.17.9", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/6bda6c84-4790-4418-95eb-75258de017fd", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/6bda6c84-4790-4418-95eb-75258de017fd", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "f8539a54-cdb8-4fc2-9409-234a67ebb095", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", + "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000009", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:14.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "6bda6c84-4790-4418-95eb-75258de017fd", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:11:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", - "created": "2020-01-12T16:06:08Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", + "created": "2020-02-24T12:11:02Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}, {"status": "SHELVED_OFFLOADED", "updated": - "2020-01-12T16:06:29Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d0:fe:e0", - "version": 4, "addr": "192.168.1.9", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:d0:fe:e0", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", + "2020-02-24T12:12:17Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": + {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d1:51:2b", + "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:d1:51:2b", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": + "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "shelved_offloaded", "OS-EXT-SRV-ATTR:instance_name": "instance-00000008", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:46.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - null, "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "security_groups": + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + null, "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Shelved", "created": "2020-01-12T16:05:35Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Shelved", "created": "2020-02-24T12:10:09Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-01-12T16:06:24Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", "version": 4, "addr": "192.168.1.8", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", + "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-02-24T12:12:02Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "192.168.1.5", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "172.16.17.7", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "suspended", "OS-EXT-SRV-ATTR:instance_name": "instance-00000007", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:45.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "security_groups": + "2020-02-24T12:10:22.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Suspended", "created": "2020-01-12T16:05:34Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Suspended", "created": "2020-02-24T12:10:06Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-01-13T14:56:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", "version": 4, "addr": "192.168.1.7", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", + "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-02-24T12:11:47Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "192.168.1.4", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "172.16.17.6", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "paused", "OS-EXT-SRV-ATTR:instance_name": "instance-00000006", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:44.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "security_groups": + "2020-02-24T12:10:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Paused", "created": "2020-01-12T16:05:32Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Paused", "created": "2020-02-24T12:10:01Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 3, "config_drive": - "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:55:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", "version": 4, "addr": "192.168.3.9", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", + "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:24Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "192.168.3.9", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "172.16.17.5", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": "", "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000005", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:50.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", - "created": "2020-01-12T16:05:30Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", + "created": "2020-02-24T12:09:58Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [{"id": - "2042bbec-e245-405e-8e77-cde0205ab38e"}], "accessIPv4": "", "accessIPv6": + "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:54:40Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", - "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:6c:e7:30", "version": 4, "addr": "172.16.17.4", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:58Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:9f:ba:08", "version": 4, "addr": "192.168.1.3", "OS-EXT-IPS:type": + "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": + "172.16.17.4", "OS-EXT-IPS:type": "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000004", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:00.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:10:37.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "da40eae5-9021-4406-939e-d9dd9b528f3d", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn", "created": - "2020-01-12T16:05:28Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": - "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "accessIPv4": "", "accessIPv6": + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn", "created": + "2020-02-24T12:09:56Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": + "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:fb:9c:40", - "version": 4, "addr": "192.168.1.5", "OS-EXT-IPS:type": "fixed"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:8d:c7:fb", "version": 4, "addr": "192.168.0.5", "OS-EXT-IPS:type": + "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "bookmark"}]}, "id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "bookmark"}]}, "id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack3-wordpress_instance-ofo5r5sqfrqk", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack3-wordpress_instance-map6mpkxczzn", + "created": "2020-02-24T12:09:34Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:af:c3:0b", "version": 4, "addr": "192.168.1.4", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9c:8d:f3", "version": 4, "addr": "192.168.0.4", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "bookmark"}]}, "id": "31b66a4b-0971-4a6e-a171-3da45ea56100", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "bookmark"}]}, "id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack2-wordpress_instance-57hrtur7dpyy", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack2-wordpress_instance-uy3qefkmuu3r", + "created": "2020-02-24T12:09:32Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:32:9d:1b", "version": 4, "addr": "192.168.1.3", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/5c489d02-0165-4746-9568-3f1a616b89f1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/5c489d02-0165-4746-9568-3f1a616b89f1", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:e6:f0:9d", "version": 4, "addr": "192.168.0.3", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "bookmark"}]}, "id": "5c489d02-0165-4746-9568-3f1a616b89f1", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "bookmark"}]}, "id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack1-wordpress_instance-xhskaxkrwj7l", - "created": "2020-01-12T16:05:16Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack1-wordpress_instance-mlbps434huur", + "created": "2020-02-24T12:09:30Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:06 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/detail?all_tenants=True&limit=1000&marker=5c489d02-0165-4746-9568-3f1a616b89f1 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/detail?all_tenants=True&limit=1000&marker=c6a48c9a-005d-42dc-b30d-787925b7e99f body: encoding: US-ASCII string: '' @@ -1881,7 +1882,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1894,17 +1895,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-3d516110-cf73-42f3-95f1-7e55e2ffe5fd + - req-cb8e7b43-97e9-4daf-a3da-9d7f7bb25092 Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:07 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:07 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/template body: encoding: US-ASCII string: '' @@ -1916,7 +1917,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -1927,9 +1928,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-068af60c-3591-45b8-9e9c-b8226b9f78c4 + - req-d412e23d-9bf3-4c80-9cb9-e22ecdf4a427 Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:08 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -1985,11 +1986,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:08 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -2001,7 +2002,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -2010,26 +2011,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-0ba6859b-e20d-46c6-af0a-3f90caf1a263 + - req-8eb2fed6-323b-41c6-b6a2-bddefb721cee Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:09 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:10 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/template body: encoding: US-ASCII string: '' @@ -2041,7 +2042,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -2052,9 +2053,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-7fa140fa-0d5a-4f17-b845-ef3716ba428d + - req-f51a2255-19b9-4b4b-907c-ee93472d5ce3 Date: - - Tue, 14 Jan 2020 13:28:20 GMT + - Tue, 25 Feb 2020 08:14:10 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -2110,11 +2111,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:20 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:10 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -2126,7 +2127,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c34ff1dad0d4401eb21a01b7d75e64c3 + - bd3bab40a70d4ed4a40ee1989b587faf response: status: code: 200 @@ -2135,29 +2136,29 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-80fb37c7-8c0d-42aa-ab14-cb657f42e039 + - req-fa2ae01f-931e-4e2f-a7f3-eb0f98142fd9 Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:11 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:11 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2169,69 +2170,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:12 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c478abb8-e9af-4e0c-ac65-e204a6991089 + - req-0104510c-8812-4705-8ac5-b1f6ccf04e55 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.119054", "expires": - "2020-01-14T14:28:21Z", "id": "50ec16b7d45441099c029d8d19397eac", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["J2aX7uXWTai0Lc-xOxq4Mw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:12.598232", "expires": + "2020-02-25T09:14:12Z", "id": "61fdb97549794770910d690f947a7470", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["x4Dvqs9pQPK6lZxtBqOtdQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:12 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -2246,7 +2247,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 50ec16b7d45441099c029d8d19397eac + - 61fdb97549794770910d690f947a7470 response: status: code: 200 @@ -2255,9 +2256,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:13 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -2265,14 +2266,14 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:13 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2284,69 +2285,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:14 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b3102dad-8ce6-496c-99c8-819184a5e77b + - req-415af6b1-5da3-4dd8-97fd-115d959003fe Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.229066", "expires": - "2020-01-14T14:28:21Z", "id": "49c1a08ea9154f8db50d3f9735c4b515", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["69l45HLyREyhuXLw-5b87w"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:14.240854", "expires": + "2020-02-25T09:14:14Z", "id": "72194bf839e848fab0909039842a9360", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["O_wNEArlSDmp4RZOl6RG3g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:14 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -2361,7 +2362,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 49c1a08ea9154f8db50d3f9735c4b515 + - 72194bf839e848fab0909039842a9360 response: status: code: 200 @@ -2370,9 +2371,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:15 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -2380,8 +2381,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:15 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2399,69 +2400,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:16 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7d42e861-6552-4171-a9ce-9c4bc7de09f7 + - req-256c451e-a7ab-4333-9db4-17558e6f890e Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.343058", "expires": - "2020-01-14T14:28:21Z", "id": "ff91e034efb043adb10acd4738ebf98a", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["X-x2Z0b_SAKt3Wg1pQpTTw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:16.203735", "expires": + "2020-02-25T09:14:16Z", "id": "29466f983d6c48609d597a69d0b518e4", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["SqRuEmFZTlKU88drXIhU2w"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:16 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -2476,7 +2477,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ff91e034efb043adb10acd4738ebf98a + - 29466f983d6c48609d597a69d0b518e4 response: status: code: 200 @@ -2485,9 +2486,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:17 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -2495,11 +2496,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:17 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -2511,7 +2512,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 50ec16b7d45441099c029d8d19397eac + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2524,21 +2525,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-38778d39-3b9d-454a-a81c-f4d30bfd362d + - req-866ab1e7-d0b4-4e84-9c87-b9b687eb8f80 Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:18 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "2db86326708a44629d0a27103e6daa04", "instances": + 10, "key_pairs": 100, "id": "4f018636e6414466b02641748cd91484", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:18 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -2550,7 +2551,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 49c1a08ea9154f8db50d3f9735c4b515 + - 61fdb97549794770910d690f947a7470 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2563,21 +2564,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-e9a19661-d25d-4352-bde4-36ba4d12f894 + - req-3d87d0cd-bb3b-47ca-ac3a-a1f53afb4e1d Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:19 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "56ac37685be246aba905e0301d595693", "instances": + 10, "key_pairs": 100, "id": "6152fef686644e46820e3d266fc8a5ce", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:19 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -2589,7 +2590,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 72194bf839e848fab0909039842a9360 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2602,21 +2603,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-63007d78-fbd5-4077-ab47-e285da01c39c + - req-a8cee44b-368a-4dcc-91eb-39aa25299130 Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:20 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "66df12d5801449a2b529d3a1bbf279b0", "instances": + 10, "key_pairs": 100, "id": "dadaba8276f24d6eb2526ffa43cd4e33", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:20 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -2628,7 +2629,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ff91e034efb043adb10acd4738ebf98a + - 29466f983d6c48609d597a69d0b518e4 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2641,24 +2642,24 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-e0ded835-5ad4-4e78-a192-2964b2289778 + - req-da5e7e81-22b7-469c-bc2d-e49e0404a384 Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:21 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "8eb4b49207904f6eb33283732571bc0e", "instances": + 10, "key_pairs": 100, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:21 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2670,75 +2671,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b3a53e89-55e4-40f7-a381-37b804eef036 + - req-621c2ba7-7eb9-45f7-88af-7e7cbac2d1a1 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.709365", "expires": - "2020-01-14T14:28:21Z", "id": "09c900a63d6f40ca83ef4c39c0f18066", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["rITEorx1QJiROME9NVm58A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:22.626377", "expires": + "2020-02-25T09:14:22Z", "id": "fc4ec0d17c034608b5841b436b4694d9", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["9XA1wqp8R-eEMVjZZW1jIQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:22 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2750,69 +2751,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a9c05524-9dab-4063-88b1-6f11ca0cf72f + - req-864416f0-5ba6-4aa6-be16-64284c2d44ea Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.793114", "expires": - "2020-01-14T14:28:21Z", "id": "ceedce6a397f4a27ac2cf5a86c592503", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["IM-KStI-QTWxoS3Gnus1zg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:23.885888", "expires": + "2020-02-25T09:14:23Z", "id": "a37889399a674244963bf8cfa58e52ef", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["sRSPqyO3TBm2eMpi0UHOww"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:24 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2830,72 +2831,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:21 GMT + - Tue, 25 Feb 2020 08:14:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8aebee1b-9f6b-4493-8a12-9837b464a7c3 + - req-f05c9034-903a-449b-8edb-075796fc0a43 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:21.877030", "expires": - "2020-01-14T14:28:21Z", "id": "d0b64ae367834a25b11a964de6bd82d8", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["THk7bU6aTWGvOT8yu_i_Zw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:25.119921", "expires": + "2020-02-25T09:14:25Z", "id": "665e5cf4820e4f4a9990d5224226d084", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["A4frruSBSY-I4Llfppmb5g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:21 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:25 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -2907,22 +2908,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - '09c900a63d6f40ca83ef4c39c0f18066' + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-a79c5e00-cb2a-445a-86e9-af99e8687d9d + - req-5be976cd-bcc6-4948-965d-3428a54a2e1d Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-a79c5e00-cb2a-445a-86e9-af99e8687d9d + - req-5be976cd-bcc6-4948-965d-3428a54a2e1d Date: - - Tue, 14 Jan 2020 13:28:22 GMT + - Tue, 25 Feb 2020 08:14:26 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -2930,12 +2931,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "2db86326708a44629d0a27103e6daa04"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:22 GMT + -1, "id": "4f018636e6414466b02641748cd91484"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:26 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -2947,22 +2948,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ceedce6a397f4a27ac2cf5a86c592503 + - fc4ec0d17c034608b5841b436b4694d9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-dcefbe5c-c52f-46b1-9144-9769bfaafb58 + - req-acd5a046-367d-4355-93bc-ced16cd0d896 Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-dcefbe5c-c52f-46b1-9144-9769bfaafb58 + - req-acd5a046-367d-4355-93bc-ced16cd0d896 Date: - - Tue, 14 Jan 2020 13:28:22 GMT + - Tue, 25 Feb 2020 08:14:27 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -2970,12 +2971,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "56ac37685be246aba905e0301d595693"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:22 GMT + -1, "id": "6152fef686644e46820e3d266fc8a5ce"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:27 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -2987,22 +2988,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - a37889399a674244963bf8cfa58e52ef response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6ebe0c24-2ebf-4a49-b850-00d7c807d337 + - req-c25cf941-91b6-42d4-9609-7f3cb79556ce Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-6ebe0c24-2ebf-4a49-b850-00d7c807d337 + - req-c25cf941-91b6-42d4-9609-7f3cb79556ce Date: - - Tue, 14 Jan 2020 13:28:22 GMT + - Tue, 25 Feb 2020 08:14:28 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -3010,12 +3011,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "66df12d5801449a2b529d3a1bbf279b0"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:22 GMT + -1, "id": "dadaba8276f24d6eb2526ffa43cd4e33"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:28 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -3027,22 +3028,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d0b64ae367834a25b11a964de6bd82d8 + - 665e5cf4820e4f4a9990d5224226d084 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-311807de-0f51-4869-8534-d60d32f262d4 + - req-467cebe9-2e31-4c6d-b48c-f0dce89fcb15 Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-311807de-0f51-4869-8534-d60d32f262d4 + - req-467cebe9-2e31-4c6d-b48c-f0dce89fcb15 Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:29 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -3050,9 +3051,9 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "8eb4b49207904f6eb33283732571bc0e"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + -1, "id": "e9bb9a5ed00244e0b3c288ed495abbf9"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -3070,76 +3071,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2a337f5e-edb3-40b5-b6a7-477cd7fa4cad + - req-45c755de-27a4-454a-a714-6ddec0dc1b6a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:23.098896", "expires": - "2020-01-14T14:28:23Z", "id": "7eae98bfe7a6407ba7b153e8d07a6bff", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["mD1Xok0QQv-nYLuhDU7F6w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:29.830902", "expires": + "2020-02-25T09:14:29Z", "id": "b9214c26b78f47819f57a5a0f6ff4b40", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["O8dIpCC-QUiYUPi8qICuOg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:30 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3151,75 +3152,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8277ee97-c9c6-486d-9861-e65fb2e7430a + - req-d619c796-c489-45f0-8d2a-9c8f55693ae6 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:23.203653", "expires": - "2020-01-14T14:28:23Z", "id": "bced6619d7c84417adc6d3df2cd09409", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["fm1cNIj-SYi2iH5aTbcrnA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:31.266014", "expires": + "2020-02-25T09:14:31Z", "id": "70c121fa555640edae8cf921af446ffe", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["ptjfJA7aTI6Nsj9LPDwwDg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:31 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3231,69 +3232,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-4e53dd74-389f-4c4b-bf9e-c86c70af908b + - req-74ce496a-9a10-4850-9895-2a3f9d7c2475 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:23.302983", "expires": - "2020-01-14T14:28:23Z", "id": "daf1665f022e44de92e988f61bd394df", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["8LEAB_vpTgWaKWsxQxyupg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:32.417940", "expires": + "2020-02-25T09:14:32Z", "id": "07d7c2a371454bdaa5454bb55bfc5a54", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["6WzTLebcTheML3-Jc1G-hw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:32 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -3311,72 +3312,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:33 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-71ae0753-6f02-40fc-b6ce-1f742830db91 + - req-317bf233-6d8a-432e-ba98-c135a3d9ed58 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:23.407273", "expires": - "2020-01-14T14:28:23Z", "id": "87c41eeefbe2427a93b5aabca0544eeb", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["QoeHlWzwSemgzXnCOHf05A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:33.529948", "expires": + "2020-02-25T09:14:33Z", "id": "5a85bea93b234360ab5ef9fde242c4b6", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["Zd6G2YE_SD6e0NNmPGVvXA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:33 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:9696/v2.0//quotas/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -3388,7 +3389,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - bced6619d7c84417adc6d3df2cd09409 + - b9214c26b78f47819f57a5a0f6ff4b40 response: status: code: 200 @@ -3399,19 +3400,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-95275c8f-c888-43a5-8c71-f53af82c377a + - req-256cc972-bbf8-4fd5-99ab-add6b9612a73 Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:34 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:35 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:9696/v2.0//quotas/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -3423,7 +3424,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - daf1665f022e44de92e988f61bd394df + - 70c121fa555640edae8cf921af446ffe response: status: code: 200 @@ -3434,19 +3435,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-2420fdfd-8b24-4f82-bb8c-49e75baec5fc + - req-65632140-f114-4454-bf3b-54e270ef1afa Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:35 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:36 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:9696/v2.0//quotas/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -3458,7 +3459,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7eae98bfe7a6407ba7b153e8d07a6bff + - 07d7c2a371454bdaa5454bb55bfc5a54 response: status: code: 200 @@ -3469,19 +3470,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-d9e1246b-bfc5-4914-b434-d2a40bb4dd78 + - req-cb0b43ef-f4ac-4ad4-abe5-8636a87bd6af Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:36 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:37 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:9696/v2.0//quotas/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -3493,7 +3494,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 87c41eeefbe2427a93b5aabca0544eeb + - 5a85bea93b234360ab5ef9fde242c4b6 response: status: code: 200 @@ -3504,19 +3505,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-f988df42-30a5-4efe-ab5b-fede74d8e141 + - req-24016ab2-7254-40cc-8b57-8a69e6e8983f Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:37 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 20, "network": 20, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:37 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96/os-volume_attachments + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0/os-volume_attachments body: encoding: US-ASCII string: '' @@ -3528,7 +3529,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3541,18 +3542,18 @@ http_interactions: Content-Length: - '197' X-Compute-Request-Id: - - req-c4763041-f75c-496b-abd3-9a78cd8808ea + - req-5471a92c-ad6f-4584-9e49-7b7738f0a92c Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:38 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e", "volumeId": "2042bbec-e245-405e-8e77-cde0205ab38e"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "volumeId": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:38 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-volume_attachments + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-volume_attachments body: encoding: US-ASCII string: '' @@ -3564,7 +3565,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3577,17 +3578,17 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-654d2b38-a4a4-427a-a0eb-4b14ef04b994 + - req-79f6d95a-f455-4de5-be7a-d6a6baa1a736 Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:39 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "volumeId": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"device": "/dev/vde", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "volumeId": "8da56634-38f0-4eb5-850c-4914089dc2ec"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:23 GMT + string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "volumeId": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"device": "/dev/vde", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "volumeId": "fd763573-0660-40f7-a9af-99877e1ea6e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:39 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -3605,70 +3606,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:23 GMT + - Tue, 25 Feb 2020 08:14:40 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-91625f57-bb69-44ae-868e-753927854938 + - req-e70233eb-80a6-4e05-9438-ee6a8e5589ae Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:24.051834", "expires": - "2020-01-14T14:28:24Z", "id": "afb992a8414d47bcb006a9b5f563f1fd", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["cc9raxNaRi2m0YX_VXBmhw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:40.253394", "expires": + "2020-02-25T09:14:40Z", "id": "7f12b1ee017f4e12849d122aa57400bd", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["jQ40uoLET-2m7j9oqNsHIQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:40 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -3686,73 +3687,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-12f434cd-7abb-4abd-bf05-f07118da73af + - req-96c9d5fc-483e-4ae8-9f6f-4f0c7cfdb46d Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:24.168365", "expires": - "2020-01-14T14:28:24Z", "id": "4a91257266924dd5a0384d5fd012155d", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["4LJAh2rdTPuM5OpJPKUx0Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:41.088990", "expires": + "2020-02-25T09:14:41Z", "id": "5b39d4014be6481a957ee874935fce10", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["FuytrikgSzeAQ1HcgLlHrA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:41 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-aggregates + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-aggregates body: encoding: US-ASCII string: '' @@ -3764,7 +3765,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ddf4821321b945579582ae1fb89bdecd + - 63ec2b65b73844409f4a9cace7012464 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3777,17 +3778,17 @@ http_interactions: Content-Length: - '18' X-Compute-Request-Id: - - req-7db706bc-e2ed-4582-ad29-b4a46aaced0f + - req-11168b48-609d-47a7-8afb-a2880a9027a5 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:42 GMT body: encoding: ASCII-8BIT string: '{"aggregates": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:42 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?all_tenants=True&limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?all_tenants=True&limit=1000&status=available body: encoding: US-ASCII string: '' @@ -3799,70 +3800,70 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-10415c4c-42af-4b1c-9c3e-dfbc761293f3 + - req-edf9dae3-6d1a-4ac3-8b06-81b4c57f16e4 Content-Type: - application/json Content-Length: - - '3734' + - '3716' X-Openstack-Request-Id: - - req-10415c4c-42af-4b1c-9c3e-dfbc761293f3 + - req-edf9dae3-6d1a-4ac3-8b06-81b4c57f16e4 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:43 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:43 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?all_tenants=True&limit=1000&marker=258fcc18-5c61-4a59-83c4-92969abe6fb9&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?all_tenants=True&limit=1000&marker=f97913d2-9211-4aed-a34c-e2efcccb1008&status=available body: encoding: US-ASCII string: '' @@ -3874,30 +3875,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-167f2f87-989b-4ecf-b7a7-b3197b5bf5ff + - req-66994352-5dc8-4369-aae8-865e66adc419 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-167f2f87-989b-4ecf-b7a7-b3197b5bf5ff + - req-66994352-5dc8-4369-aae8-865e66adc419 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:43 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:44 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -3909,30 +3910,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-aa3af1e5-1881-419c-b23f-204f059c09bb + - req-a54b0872-e0cd-4a95-b86b-3bfdca73e7f6 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-aa3af1e5-1881-419c-b23f-204f059c09bb + - req-a54b0872-e0cd-4a95-b86b-3bfdca73e7f6 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:44 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:45 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?all_tenants=True&limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?all_tenants=True&limit=1000&status=available body: encoding: US-ASCII string: '' @@ -3944,44 +3945,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-91ffcda4-c8c4-458a-bde9-1f3c9f240f73 + - req-fedc4496-ff77-4048-ad2f-8d6b8e69d112 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-91ffcda4-c8c4-458a-bde9-1f3c9f240f73 + - req-fedc4496-ff77-4048-ad2f-8d6b8e69d112 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:45 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:45 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?all_tenants=True&limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?all_tenants=True&limit=1000 body: encoding: US-ASCII string: '' @@ -3993,120 +3994,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-75267bd8-d2b4-4a55-a659-00b932ecb159 + - req-1c5f3a2d-97de-421e-adbb-33e51dd65c31 Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-75267bd8-d2b4-4a55-a659-00b932ecb159 + - req-1c5f3a2d-97de-421e-adbb-33e51dd65c31 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:46 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:47 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?all_tenants=True&limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?all_tenants=True&limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -4118,27 +4119,27 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7ce9548c40be4c3abe122d0f71e4c41b + - 76e87fc7d87d4a85ae0baaf9010d125a response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-f8520672-9411-4e61-98e0-b049e0e7a275 + - req-593f0cc3-eed2-4ab1-ad6a-b032a9c81ed2 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-f8520672-9411-4e61-98e0-b049e0e7a275 + - req-593f0cc3-eed2-4ab1-ad6a-b032a9c81ed2 Date: - - Tue, 14 Jan 2020 13:28:24 GMT + - Tue, 25 Feb 2020 08:14:48 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:24 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:48 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4156,70 +4157,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:25 GMT + - Tue, 25 Feb 2020 08:14:49 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-bc1e8230-d075-4e94-92fc-17c9455c5bdf + - req-f9aba902-f7ee-4089-a118-fbc230720657 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:25.637976", "expires": - "2020-01-14T14:28:25Z", "id": "0321675f89ac4e3293ee4e24561289a5", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["ns99_39KTbiSh94ILrYvxA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:49.666012", "expires": + "2020-02-25T09:14:49Z", "id": "bcfd7d08a60e492f822dbc26de0f8406", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["edIXnGzxRiuMAVS71nLnPQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:25 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:49 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4237,70 +4238,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:25 GMT + - Tue, 25 Feb 2020 08:14:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-61e50317-7e76-4bee-9d0a-8df44b5cb6dd + - req-b8a8e356-14cc-4db4-bcd5-a9ec0c82434a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:25.749612", "expires": - "2020-01-14T14:28:25Z", "id": "79ca82282c994c5799e04193eb514f23", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["pijpRsj2Ru6JXbCuCFVZyw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:50.938600", "expires": + "2020-02-25T09:14:50Z", "id": "9f82b49612414b7b937b4230243bc2c5", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["poDvvEBTSB6JWf_yQeA61Q"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:25 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:51 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/networks @@ -4315,7 +4316,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -4326,79 +4327,79 @@ http_interactions: Content-Length: - '5330' X-Openstack-Request-Id: - - req-fad07b87-7ea2-4956-b1b6-6f44ae95e550 + - req-4fc341e5-6812-456e-9c93-832546a07bef Date: - - Tue, 14 Jan 2020 13:28:25 GMT + - Tue, 25 Feb 2020 08:14:52 GMT body: encoding: ASCII-8BIT - string: '{"networks": [{"status": "ACTIVE", "subnets": ["9b51a47a-9ec4-4725-a1bc-7b3165d5375e"], + string: '{"networks": [{"status": "ACTIVE", "subnets": ["b203d38f-01ad-48a3-84fa-0490239b0995", + "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2"], "name": "EmsRefreshSpec-NetworkPublic_50", + "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": + false, "provider:network_type": "flat", "id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["a5e56f5e-f3cf-4224-aaba-71792b317537"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_1", "provider:physical_network": - null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "provider:segmentation_id": - 68}, {"status": "ACTIVE", "subnets": ["e584057e-f15d-4038-82d2-b5ec77234adc"], - "name": "EmsRefreshSpec-NetworkPrivate_3", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "provider:segmentation_id": - 75}, {"status": "ACTIVE", "subnets": ["6b1dade5-4d5e-4ccc-ae57-0ca3222a443c"], - "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "provider:segmentation_id": - 46}, {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], + "vxlan", "id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "provider:segmentation_id": + 98}, {"status": "ACTIVE", "subnets": ["fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mtu": 0, "router:external": false, "shared": false, "provider:network_type": + "vxlan", "id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "provider:segmentation_id": + 59}, {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["d0de16b8-ead6-4b12-b206-9488d1af8d74", - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4"], "name": "EmsRefreshSpec-NetworkPrivate_30", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "provider:segmentation_id": - 97}, {"status": "ACTIVE", "subnets": ["e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "8ca156a0-7ec2-4981-96c6-6499214413cf"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["a6f12ba3-3567-400f-a9ce-6bb4e135f1f3"], + "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", + "id": "873c1069-e420-4178-a77c-99fc2c905605", "provider:segmentation_id": + 13}, {"status": "ACTIVE", "subnets": ["063860da-16bf-4e80-9e03-8ba23bb78303"], + "name": "EmsRefreshSpec-NetworkPrivate_20", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", + "id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "provider:segmentation_id": + 24}, {"status": "ACTIVE", "subnets": ["f0ba8818-dc0d-4683-9af5-e1c83e92df5f", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8"], "name": "EmsRefreshSpec-NetworkPrivate_30", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "678bb925-5f9c-4718-874c-ac592109544c", "provider:segmentation_id": - 82}, {"status": "ACTIVE", "subnets": ["a51f963b-93a5-4892-a9d5-21a32b2e7941"], - "name": "EmsRefreshSpec-NetworkPublic_20", "provider:physical_network": "public_net_2", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["159bd606-50a7-4e16-932a-4ae80ed58efc"], + "vxlan", "id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "provider:segmentation_id": + 86}, {"status": "ACTIVE", "subnets": ["5d12d78d-20e2-4240-845f-cb2bb1b5c51a"], "name": "EmsRefreshSpec-NetworkPublic_40", "provider:physical_network": "public_net_4", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["544ac21e-718b-425a-8fe9-2a3f19cdeb1d"], - "name": "EmsRefreshSpec-NetworkPrivate_20", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["12ec8daa-a53e-4da1-b1cd-659e80cb7584"], + "name": "EmsRefreshSpec-NetworkPublic_10", "provider:physical_network": "public_net_1", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": true, "shared": false, "provider:network_type": "flat", + "id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["dd0f4830-f0e0-49f8-a041-dc7ce7abaa78"], + "name": "EmsRefreshSpec-NetworkPrivate_3", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", "provider:segmentation_id": - 99}, {"status": "ACTIVE", "subnets": ["c9a2a941-2b1a-406e-9d91-fe9a9864b993"], - "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "provider:segmentation_id": + 15}, {"status": "ACTIVE", "subnets": ["273e0170-431e-4f44-a266-7c4d3683ffe8"], + "name": "EmsRefreshSpec-NetworkPublic_20", "provider:physical_network": "public_net_2", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "50426539-7226-4a52-895a-dd8af97779d9", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["668a8b0d-7300-48e1-be97-db0174c341e2", - "201313ab-c7f4-41bf-8aea-56fdeececfc9"], "name": "EmsRefreshSpec-NetworkPublic_50", - "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mtu": 0, "router:external": true, "shared": - false, "provider:network_type": "flat", "id": "9fbb4ac7-7db3-486b-8524-340b65175c40", - "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["96f0bd23-c9f1-4e58-811a-5da42a552272"], - "name": "EmsRefreshSpec-NetworkPublic_10", "provider:physical_network": "public_net_1", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["8b258afd-ddbb-410e-af5f-c8b6f087f782"], + "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "402c76d3-c791-4401-8112-57c026e4c1ee", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["be64e82a-7735-4ae3-a390-b0fb6441c184", - "aa3be045-833a-4a11-9c63-3d9fc3ee0322"], "name": "EmsRefreshSpec-NetworkPrivate", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "28f725f2-026f-4647-8b74-2048baac2063"], "name": "EmsRefreshSpec-NetworkPrivate", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "provider:segmentation_id": - 76}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:25 GMT + "vxlan", "id": "fe1373d6-962e-4439-8782-5997d874ca98", "provider:segmentation_id": + 82}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4416,70 +4417,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:25 GMT + - Tue, 25 Feb 2020 08:14:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1b8cdfc9-07e8-40ad-83fb-07140dc2b7a2 + - req-a46b27d1-72bc-4418-b134-34c579f15649 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:26.035705", "expires": - "2020-01-14T14:28:26Z", "id": "15be31923ea44de3b845d1062ee2f889", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["my5XtkEPQFGMOofeJMBs2Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:52.767023", "expires": + "2020-02-25T09:14:52Z", "id": "9668a2ea440546c98a3cc8cae2f3fef7", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["D49SCud8TY60m-CC0PfcAw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:53 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4497,13 +4498,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:54 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d6912ba7-aa50-4301-83ec-e91bd07849ef + - req-bd65eb51-c329-4aab-ae01-0a45539a1deb Content-Length: - '370' Connection: @@ -4512,13 +4513,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:26.106689", "expires": - "2020-01-14T14:28:26Z", "id": "72de7ffa7fee4e2fb47ff06222f8964d", "audit_ids": - ["xuq6hG3MRnK4QoqKZYl4WQ"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:54.147597", "expires": + "2020-02-25T09:14:54Z", "id": "9ed26153a20a4de9989f8a774941a6ea", "audit_ids": + ["Kft6EVy4Tom2GQtlWY6EuA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:54 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -4533,20 +4534,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 72de7ffa7fee4e2fb47ff06222f8964d + - 9ed26153a20a4de9989f8a774941a6ea response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:55 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-41edfe44-b564-47b5-9ce3-391f68bd0fee + - req-07840836-d75b-4e95-ad56-dda6a00e3f6c Content-Length: - '500' Connection: @@ -4555,20 +4556,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:55 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4580,75 +4581,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:56 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-db1d990e-0d95-475f-afc9-8dd84568988a + - req-fe8158e2-05c7-46da-8513-dbe72eb7fc56 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:26.225857", "expires": - "2020-01-14T14:28:26Z", "id": "0db87e05d2164cf9b9271bbf2761e2a3", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["TuRO43eQRSW964Uqyf7W6A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:56.172708", "expires": + "2020-02-25T09:14:56Z", "id": "241c40fc6af54adba1a3f6daf5ededaf", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["15NiUj7dQxOcQpMK3o_avQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:56 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4660,69 +4661,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:57 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2e5689a6-5ee4-4adb-9947-a48ee79e4221 + - req-71841b3b-432e-4941-964d-698e3c824a2c Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:26.327070", "expires": - "2020-01-14T14:28:26Z", "id": "9379aadd3422439a8d0970ca47cb0f0f", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["bMy771hYTbq6Ib5W16RDKw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:57.491231", "expires": + "2020-02-25T09:14:57Z", "id": "670f1dbd1971483a87fe8a1aa1dc5116", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["DoMpmeILT_SrnKal-ltA8g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:57 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4740,72 +4741,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:58 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0d01c00a-bb81-4c21-b7df-7096bf9ba0e8 + - req-37bc4abb-b6b4-419f-bfa0-e9b69ea451e6 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:26.435279", "expires": - "2020-01-14T14:28:26Z", "id": "8f4018e0164e4751815ebb4e9abc6c9b", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["nZ0l2n2iSPinXLPidt_DFQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:14:58.344504", "expires": + "2020-02-25T09:14:58Z", "id": "7ee63ae0e5174a409b3240535f94cde7", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["GTQJ9Iy-SKe1Lm6zVG3cmg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:58 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -4817,7 +4818,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0db87e05d2164cf9b9271bbf2761e2a3 + - 9668a2ea440546c98a3cc8cae2f3fef7 response: status: code: 200 @@ -4828,17 +4829,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-c166b820-fc47-4f9e-846a-25c115fd3aeb + - req-adf2fc7a-59e8-4f0c-a880-4cfcc08c0c6d Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:59 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:14:59 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -4850,7 +4851,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9379aadd3422439a8d0970ca47cb0f0f + - 241c40fc6af54adba1a3f6daf5ededaf response: status: code: 200 @@ -4861,17 +4862,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-276f4ce0-4e65-4db6-a462-7816ca64d2e3 + - req-4445191c-398e-47ee-a58d-57d3c572871a Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:14:59 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:00 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -4883,7 +4884,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 15be31923ea44de3b845d1062ee2f889 + - 670f1dbd1971483a87fe8a1aa1dc5116 response: status: code: 200 @@ -4894,17 +4895,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-fb41bced-124a-46d5-906e-8fa8fbd51914 + - req-1fff0f14-bfe9-4166-9df6-e0ebb1c67f10 Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:15:01 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:01 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -4916,7 +4917,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -4925,11 +4926,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-2ed7ea4c-4715-453b-b89d-52cfb6a83d1f + - req-44a1e65a-9d71-42ef-b75f-f79e7e67e909 Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:15:01 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -4938,35 +4939,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:01 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -4978,7 +4979,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -4989,17 +4990,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-7bcb519a-14af-49d7-beb7-09fee006254e + - req-d2599939-1513-43fe-88b0-21c3de6f8939 Date: - - Tue, 14 Jan 2020 13:28:26 GMT + - Tue, 25 Feb 2020 08:15:02 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:02 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -5011,7 +5012,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5020,11 +5021,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-5e50a32f-ca0d-4d53-87b2-320e9ccd40bd + - req-bed9d508-bb39-469a-8b68-87697613fb0f Date: - - Tue, 14 Jan 2020 13:28:27 GMT + - Tue, 25 Feb 2020 08:15:03 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -5033,28 +5034,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:04 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -5066,7 +5067,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5075,11 +5076,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-641ee37b-1cdf-4316-9856-d12942fd33eb + - req-8afd75d7-9c57-446c-8716-5ae75620ddd1 Date: - - Tue, 14 Jan 2020 13:28:27 GMT + - Tue, 25 Feb 2020 08:15:05 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -5088,28 +5089,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:05 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -5121,7 +5122,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5130,11 +5131,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-b76a3540-c450-4776-80d4-8cacda3c4d5f + - req-d5ea0c4f-6105-46cc-96f9-8e692a65b18f Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:06 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -5143,28 +5144,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:06 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -5176,7 +5177,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5185,26 +5186,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-66fd80a3-5acd-4824-ac40-8c33bc189b5b + - req-73d7891c-4886-40d4-93e2-e224e599827c Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:07 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:07 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -5216,7 +5217,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5225,26 +5226,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-0f28cfc4-c5ef-41bf-bd56-a9cdfa8b1dc4 + - req-290af901-01e5-4838-aca9-564dc5af11a0 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:08 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:08 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -5256,7 +5257,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8f4018e0164e4751815ebb4e9abc6c9b + - 7ee63ae0e5174a409b3240535f94cde7 response: status: code: 200 @@ -5265,23 +5266,23 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-0e0c03d7-4a55-4c50-8f5c-1eac28231a1f + - req-d656ae4d-8b90-43f6-b5e1-303c698bbea3 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:09 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:09 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?all_tenants=True&limit=1000 @@ -5296,7 +5297,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -5307,116 +5308,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-5e4e356f-440b-49e9-b979-6d45241ac2ac + - req-3d174c74-4f20-4a92-95d0-3c3b6963ff76 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:10 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?all_tenants=True&limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?all_tenants=True&limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -5428,7 +5429,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -5439,113 +5440,112 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-563867b3-c3d2-465b-bb5d-3fc823b35f37 + - req-438dab96-0c5e-4961-b64d-d4ac2037fc08 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:11 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:12 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?all_tenants=True&limit=1000 @@ -5560,7 +5560,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -5569,57 +5569,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-f34ba31f-4b99-4162-b2c0-873d09a89dc3 + - req-3a796607-d11e-4b16-b49b-4a5aa9e068c7 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:12 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:13 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?all_tenants=True&limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?all_tenants=True&limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -5631,7 +5629,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -5640,54 +5638,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-e2e07ae3-740e-4415-b5dc-640faa156cf6 + - req-222af788-6369-4a3c-9a66-db306c36d3e5 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:13 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:13 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?all_tenants=True&limit=1000 @@ -5702,7 +5698,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -5711,413 +5707,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-49b17722-5e96-41a5-8470-f252eb5e01e5 + - req-ec407402-4a86-454a-8c86-c2a1fbf3ee3f Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:14 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?all_tenants=True&limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?all_tenants=True&limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -6129,7 +6129,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6138,410 +6138,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-a002113f-8190-46ef-907b-3e72978af67f + - req-397ecefb-51a4-4572-85f3-e3c51f5a3a19 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:16 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:17 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?all_tenants=True&limit=1000 @@ -6556,7 +6560,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6567,44 +6571,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-b1ccf69f-3592-4c9f-8e39-48d25676c8c1 + - req-a8d81050-6220-4645-8682-8a9bddc6aa8d Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:18 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:18 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?all_tenants=True&limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?all_tenants=True&limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -6616,7 +6621,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6627,41 +6632,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-358d615f-befd-457f-bc4b-dff295583f8b + - req-ded81caa-79ec-44e8-ba57-c59721009c19 Date: - - Tue, 14 Jan 2020 13:28:28 GMT + - Tue, 25 Feb 2020 08:15:18 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:19 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000 @@ -6676,7 +6682,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6685,202 +6691,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15605' + - '15603' X-Openstack-Request-Id: - - req-7c4d3dfb-f543-498b-9526-23a0e1793829 - Date: - - Tue, 14 Jan 2020 13:28:28 GMT - body: - encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + - req-3582357a-fc14-4a0c-9699-53224a268c99 + Date: + - Tue, 25 Feb 2020 08:15:20 GMT + body: + encoding: ASCII-8BIT + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:28 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:21 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -6892,7 +6898,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6901,17 +6907,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '174' + - '172' X-Openstack-Request-Id: - - req-f3edee45-7526-4bbe-8831-6f6dbd9580e7 + - req-1e138a4f-3b4b-41c0-b19f-4fdefe441365 Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:21 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?all_tenants=True&limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:22 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000 @@ -6926,7 +6932,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -6935,187 +6941,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14259' + - '14257' X-Openstack-Request-Id: - - req-1cdbd301-3003-46f9-bd8a-43612ff91d5c - Date: - - Tue, 14 Jan 2020 13:28:29 GMT - body: - encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + - req-66930ab0-b487-4930-a699-c5bf9758d52b + Date: + - Tue, 25 Feb 2020 08:15:23 GMT + body: + encoding: ASCII-8BIT + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:23 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -7127,7 +7134,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79ca82282c994c5799e04193eb514f23 + - 9f82b49612414b7b937b4230243bc2c5 response: status: code: 200 @@ -7136,17 +7143,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '189' + - '187' X-Openstack-Request-Id: - - req-7920910a-943a-4833-aa55-c1d3513e8db7 + - req-4f8f6fae-ee59-4c0c-a936-b0045c24e1c1 Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:24 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?all_tenants=True&limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:24 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7164,70 +7171,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-dfa3866f-435c-4824-b982-9154b3a22841 + - req-219a2c16-0232-4be1-a84f-939043b46e13 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.477829", "expires": - "2020-01-14T14:28:29Z", "id": "f6d022e9c6fe490582e5472de75ee9b8", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["u8xmf1GaRViRyIb8xFMiLQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:25.710668", "expires": + "2020-02-25T09:15:25Z", "id": "bc395ffb0441455bad75feb8e3b89751", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["etZcmAVfT82oPLuYEPKMKg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:25 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7245,70 +7252,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:26 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-cb4c03ca-27cf-43ed-97ca-245693c0a9e9 + - req-fd906723-37f6-4d1e-9d97-fb90bfb4cb0c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.592361", "expires": - "2020-01-14T14:28:29Z", "id": "7d7e187649f84f189c0f24897939e3cc", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["kDbAP5tnT0uNsMACyhgPHw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:26.612324", "expires": + "2020-02-25T09:15:26Z", "id": "c83db9201b254c6296551454c2710bbe", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["EOiUZI5kTHy1olvccLJpCw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:26 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7326,13 +7333,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1423995e-6a03-4bc7-9550-b432e8da8ac3 + - req-40c4ab31-34d7-48e3-9124-7a371f6d3096 Content-Length: - '370' Connection: @@ -7341,13 +7348,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.662553", "expires": - "2020-01-14T14:28:29Z", "id": "ac0f985062a547b99e42682058f48406", "audit_ids": - ["-eEHN1PbSEGz7iAfk6FvhQ"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:27.556109", "expires": + "2020-02-25T09:15:27Z", "id": "173bc26cc25a43b1b079bf643549e6bd", "audit_ids": + ["0RONQl6GTUiRI-4tZunjzg"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:27 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -7362,20 +7369,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ac0f985062a547b99e42682058f48406 + - 173bc26cc25a43b1b079bf643549e6bd response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8d3b1f65-39ae-49f4-8ae6-d78f072cc42b + - req-92ed991d-0bbc-4520-89ee-bd93aac409b6 Content-Length: - '500' Connection: @@ -7384,20 +7391,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:28 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -7409,75 +7416,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3282852b-bd0c-421b-ad3a-6c180e48617f + - req-db5cf486-a0ff-484c-b476-161300a89012 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.783055", "expires": - "2020-01-14T14:28:29Z", "id": "24ce70c186224cb6b8527f43e53876ab", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["8s70t1h4SrKlLt9ZZGMnYg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:29.839610", "expires": + "2020-02-25T09:15:29Z", "id": "6017379f9a7543e8b0eb297fdeb5671b", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["mAOo1vIwTzyANOu6JNc0Ow"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:30 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -7489,69 +7496,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d28113b9-7652-42f0-b0ce-84b34686c156 + - req-5aff08eb-4f79-43d5-9b38-bb85800546e4 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.891147", "expires": - "2020-01-14T14:28:29Z", "id": "635bde1646264cd1a3639ad820834795", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["HOUlBS4lRlSDN632PUNTgg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:30.979701", "expires": + "2020-02-25T09:15:30Z", "id": "f086c983b7994d27b5b3f9bb8ea9e455", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["slF6FoxFRIWt2Z9qd93NlQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:31 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7569,72 +7576,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:29 GMT + - Tue, 25 Feb 2020 08:15:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-438461e2-a306-407f-aebf-4adbfa78b17b + - req-05af4ac7-276b-4d69-89b9-b636b4f164ea Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:29.998979", "expires": - "2020-01-14T14:28:29Z", "id": "f6cb514f196746bf8def0b3b12990453", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["7_dFQe5qTgiBW4asy22LQw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:15:31.987285", "expires": + "2020-02-25T09:15:31Z", "id": "93648c83e0d744caad436703792fc93f", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["9ih2rDsxQL6J9_uazLHIIg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:32 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -7646,30 +7653,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-e3e15c01-0fff-411e-95f3-5c47029915d6 + - req-9eb147ba-9e4c-4b1f-9b88-71ba16a5f30b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-e3e15c01-0fff-411e-95f3-5c47029915d6 + - req-9eb147ba-9e4c-4b1f-9b88-71ba16a5f30b Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:32 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:33 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -7681,30 +7688,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-8dff765d-22b5-4c2c-9417-870dccc4801c + - req-01b140b6-b929-44f4-9988-d2792e8c3162 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-8dff765d-22b5-4c2c-9417-870dccc4801c + - req-01b140b6-b929-44f4-9988-d2792e8c3162 Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:33 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:34 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -7716,30 +7723,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-25641d05-9701-4b3f-a76e-2b0cb3010035 + - req-e0029491-a0c0-44cc-8045-e28e5485583b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-25641d05-9701-4b3f-a76e-2b0cb3010035 + - req-e0029491-a0c0-44cc-8045-e28e5485583b Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:34 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:34 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -7751,120 +7758,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-419cf7e1-b32a-4f25-a8be-12fab2d43eec + - req-204814af-b61d-4dfe-98cd-004f148982b5 Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-419cf7e1-b32a-4f25-a8be-12fab2d43eec + - req-204814af-b61d-4dfe-98cd-004f148982b5 Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:35 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:36 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -7876,30 +7883,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-98c8ba44-1d71-4aa0-aae1-cbba6deb276a + - req-bba7df56-a969-4804-8ec0-d1d0a74414d3 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-98c8ba44-1d71-4aa0-aae1-cbba6deb276a + - req-bba7df56-a969-4804-8ec0-d1d0a74414d3 Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:37 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:37 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -7911,30 +7918,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-79193e4a-4590-40a2-9581-3908d02f5b9a + - req-555f0f68-3d13-466c-b10c-ffcc77f51f17 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-79193e4a-4590-40a2-9581-3908d02f5b9a + - req-555f0f68-3d13-466c-b10c-ffcc77f51f17 Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:37 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:38 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -7946,30 +7953,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-3bce81b4-861f-480a-803d-ce04592eeb1b + - req-023919bb-7f35-4fb4-b0b1-09d7a115f4ad Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-3bce81b4-861f-480a-803d-ce04592eeb1b + - req-023919bb-7f35-4fb4-b0b1-09d7a115f4ad Date: - - Tue, 14 Jan 2020 13:28:30 GMT + - Tue, 25 Feb 2020 08:15:39 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:30 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:39 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail body: encoding: US-ASCII string: '' @@ -7981,30 +7988,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1bf1449c-5f7f-417d-b776-2f90adb55d37 + - req-de084f26-db4c-4e60-9103-bdad1b24da0b Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-1bf1449c-5f7f-417d-b776-2f90adb55d37 + - req-de084f26-db4c-4e60-9103-bdad1b24da0b Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:40 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:40 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8016,30 +8023,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-92c0d74a-c139-4eb9-ad9e-c7f63562e8d6 + - req-add267c8-a675-429f-bb6e-2470274e74d5 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-92c0d74a-c139-4eb9-ad9e-c7f63562e8d6 + - req-add267c8-a675-429f-bb6e-2470274e74d5 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:41 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:41 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail body: encoding: US-ASCII string: '' @@ -8051,30 +8058,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c92ec1d7-2dac-4a2d-9355-77a7bd5a30cb + - req-8722882f-9b28-4da2-a7e5-da581058e390 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-c92ec1d7-2dac-4a2d-9355-77a7bd5a30cb + - req-8722882f-9b28-4da2-a7e5-da581058e390 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:42 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:42 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8086,30 +8093,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7733c280-dfb6-4c69-960a-ee3023dcb453 + - req-954a5c9f-8bbd-402a-944c-7aa1b122c02b Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-7733c280-dfb6-4c69-960a-ee3023dcb453 + - req-954a5c9f-8bbd-402a-944c-7aa1b122c02b Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:43 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:43 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail body: encoding: US-ASCII string: '' @@ -8121,44 +8128,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-78f723df-4d5b-43da-8804-d71363b4379e + - req-d161b5f6-0ec3-4f3f-8fde-93070f030949 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-78f723df-4d5b-43da-8804-d71363b4379e + - req-d161b5f6-0ec3-4f3f-8fde-93070f030949 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:44 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:44 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8170,44 +8177,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-fd787fbf-2b77-4283-aa82-6cb171de77db + - req-909ec17f-6abd-40c7-ac7f-d8fe137cb997 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-fd787fbf-2b77-4283-aa82-6cb171de77db + - req-909ec17f-6abd-40c7-ac7f-d8fe137cb997 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:44 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:45 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail body: encoding: US-ASCII string: '' @@ -8219,30 +8226,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-84402f95-0c83-4473-9d91-049ade0a6900 + - req-8000e947-fa28-44bf-b4f0-d37f0a707aff Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-84402f95-0c83-4473-9d91-049ade0a6900 + - req-8000e947-fa28-44bf-b4f0-d37f0a707aff Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:45 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:46 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8254,30 +8261,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-d5ef39d5-456a-4538-9f5c-a79477b8dfea + - req-4476dd73-73c4-41fe-bafe-0bd7785b8a7f Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-d5ef39d5-456a-4538-9f5c-a79477b8dfea + - req-4476dd73-73c4-41fe-bafe-0bd7785b8a7f Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:47 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:47 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail body: encoding: US-ASCII string: '' @@ -8289,30 +8296,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-78951668-cac2-486e-8e89-a5574ada8fc3 + - req-84b4ff60-9ec2-4e32-b4ee-7248f26f3e6f Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-78951668-cac2-486e-8e89-a5574ada8fc3 + - req-84b4ff60-9ec2-4e32-b4ee-7248f26f3e6f Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:48 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:48 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8324,30 +8331,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-4b55b9c9-4a9b-4e93-8bea-602034462408 + - req-65f9822e-f07d-4265-9f9d-70ca69f13f5b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-4b55b9c9-4a9b-4e93-8bea-602034462408 + - req-65f9822e-f07d-4265-9f9d-70ca69f13f5b Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:49 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:49 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail body: encoding: US-ASCII string: '' @@ -8359,30 +8366,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-f949cf75-a429-47c8-bb13-1682061bfebb + - req-ba8454a8-1ca1-477d-bb7f-cf37abdee67f Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-f949cf75-a429-47c8-bb13-1682061bfebb + - req-ba8454a8-1ca1-477d-bb7f-cf37abdee67f Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:50 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:50 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8394,30 +8401,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-3f4b86c8-df3b-4a11-a0b7-55b7ef0f76b4 + - req-895e660c-9425-4a09-b4aa-7e7d66fd5e7a Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-3f4b86c8-df3b-4a11-a0b7-55b7ef0f76b4 + - req-895e660c-9425-4a09-b4aa-7e7d66fd5e7a Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:50 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:51 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail body: encoding: US-ASCII string: '' @@ -8429,30 +8436,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7eab2dc0-e814-4088-bc06-6c0e71983a5b + - req-ed4f638c-0309-4a03-8f19-52d9197864e2 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-7eab2dc0-e814-4088-bc06-6c0e71983a5b + - req-ed4f638c-0309-4a03-8f19-52d9197864e2 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:51 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:52 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -8464,30 +8471,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-ae9bf03d-0555-4491-bf52-5f1f8bbca2a1 + - req-0d312c7d-3a93-4f3a-a277-2ab99db26f16 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-ae9bf03d-0555-4491-bf52-5f1f8bbca2a1 + - req-0d312c7d-3a93-4f3a-a277-2ab99db26f16 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:52 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:52 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000 body: encoding: US-ASCII string: '' @@ -8499,37 +8506,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-f0364351-0ab9-43a1-9843-5d2932955820 + - req-ac7cd383-208e-4715-bfe9-70e13a39ea83 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-f0364351-0ab9-43a1-9843-5d2932955820 + - req-ac7cd383-208e-4715-bfe9-70e13a39ea83 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:53 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:53 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -8541,37 +8548,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 24ce70c186224cb6b8527f43e53876ab + - c83db9201b254c6296551454c2710bbe response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-d82f366d-aee7-4c18-b3a1-37b39b341cf3 + - req-1fb425b2-1a9a-4f0d-a3a6-2573bb9082db Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-d82f366d-aee7-4c18-b3a1-37b39b341cf3 + - req-1fb425b2-1a9a-4f0d-a3a6-2573bb9082db Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:54 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:54 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000 body: encoding: US-ASCII string: '' @@ -8583,37 +8590,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-cd6eb9b5-da59-4b3c-9b15-436356bb2d34 + - req-e23917a9-3102-472e-9e5d-607395625594 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-cd6eb9b5-da59-4b3c-9b15-436356bb2d34 + - req-e23917a9-3102-472e-9e5d-607395625594 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:56 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:56 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -8625,37 +8632,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 635bde1646264cd1a3639ad820834795 + - 6017379f9a7543e8b0eb297fdeb5671b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-2cdd324d-9ad5-47c8-80b8-68dff2074611 + - req-b4f25603-f85d-439d-abff-f0a7be01da88 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-2cdd324d-9ad5-47c8-80b8-68dff2074611 + - req-b4f25603-f85d-439d-abff-f0a7be01da88 Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:57 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:57 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000 body: encoding: US-ASCII string: '' @@ -8667,37 +8674,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b9f3d672-1db3-42f4-b8c0-6112a52fcfc5 + - req-59c73e01-867f-4591-a148-a980402f5c7e Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-b9f3d672-1db3-42f4-b8c0-6112a52fcfc5 + - req-59c73e01-867f-4591-a148-a980402f5c7e Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:58 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:58 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -8709,37 +8716,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d7e187649f84f189c0f24897939e3cc + - f086c983b7994d27b5b3f9bb8ea9e455 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-d3873109-de5c-4644-80bc-cd97ba263314 + - req-fcb15b2e-fce9-4390-a15f-9d78a937a53a Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-d3873109-de5c-4644-80bc-cd97ba263314 + - req-fcb15b2e-fce9-4390-a15f-9d78a937a53a Date: - - Tue, 14 Jan 2020 13:28:31 GMT + - Tue, 25 Feb 2020 08:15:59 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:15:59 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000 body: encoding: US-ASCII string: '' @@ -8751,37 +8758,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-2838762e-54c0-435a-b27a-069a8cab63cd + - req-5e4f2135-1665-4248-8196-d81b9895c49d Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-2838762e-54c0-435a-b27a-069a8cab63cd + - req-5e4f2135-1665-4248-8196-d81b9895c49d Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:15:59 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:00 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -8793,34 +8800,34 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f6cb514f196746bf8def0b3b12990453 + - 93648c83e0d744caad436703792fc93f response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0771aaf4-a0df-49f6-bf0a-80268a9e9d17 + - req-2b77b872-3e69-4ca8-b7ff-0c8e8093ac54 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-0771aaf4-a0df-49f6-bf0a-80268a9e9d17 + - req-2b77b872-3e69-4ca8-b7ff-0c8e8093ac54 Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:00 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:01 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -8838,70 +8845,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:01 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7478af57-0451-4472-81fd-0745d1b4a0ed + - req-cfeb2ff8-703a-4c4c-923f-6b677f463874 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.229019", "expires": - "2020-01-14T14:28:32Z", "id": "3ad49411148d43428b26ce38f07e1dbe", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["CCuRw2XRQS6GDOeYH1XqxA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:02.021103", "expires": + "2020-02-25T09:16:01Z", "id": "c55d768362e940cebace4f2b282eeb74", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["YvcYAZ-_SvahGnzoKO30mA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:02 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -8919,70 +8926,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:02 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c2094182-4845-4881-8875-6c11cddd1641 + - req-50c0d0c4-d95b-4407-93ca-c288d1f24400 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.347512", "expires": - "2020-01-14T14:28:32Z", "id": "d5738c85ad114f4e87da3556631af2f4", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["Qt1p0ghcQ8mp36rtKdAJYQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:02.772958", "expires": + "2020-02-25T09:16:02Z", "id": "dcb9cabc3214427e902629582b820558", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["fNaBI1OWRy2A5xliuZpfqQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:03 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -9000,13 +9007,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:03 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-42dff4ac-d955-46f3-98fb-6b247ab6507c + - req-dc971022-596b-458b-9b8f-6fdf5fb48c93 Content-Length: - '370' Connection: @@ -9015,13 +9022,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.395891", "expires": - "2020-01-14T14:28:32Z", "id": "2b6fabd95e4c4874aece687db7e4fdf8", "audit_ids": - ["xss2T1veTtSseIH-Yz5-gA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:03.805200", "expires": + "2020-02-25T09:16:03Z", "id": "ade21b7dd23745f7b9bb5093cf05c947", "audit_ids": + ["gVOzlkFtTny_pJX-QpgIRw"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:04 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -9036,20 +9043,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2b6fabd95e4c4874aece687db7e4fdf8 + - ade21b7dd23745f7b9bb5093cf05c947 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:04 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a4674243-7bc9-4f00-9d03-b9fa8310cb68 + - req-2ffb1dda-bb19-431d-bc3e-dd3d68e925fe Content-Length: - '500' Connection: @@ -9058,20 +9065,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:05 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -9083,75 +9090,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:05 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-05ca47cd-892b-44db-9fa5-69f20d6a77d6 + - req-098a84e6-e241-4dc3-a20e-e4dfc9914744 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.504756", "expires": - "2020-01-14T14:28:32Z", "id": "60310ea7f0ea41848ec9df8892fe506d", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["QKcmkt1zRuqvf5qUV6hohQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:06.004471", "expires": + "2020-02-25T09:16:05Z", "id": "237676c268df45d28df8a1296268439a", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["itPRQWiITNuEVPzb2C-BsQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:06 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -9163,69 +9170,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:07 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-194d069d-1fc3-4751-a3c0-11ae4f8d102d + - req-5e7f6fea-602a-47c2-92a6-20afdb124faa Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.594309", "expires": - "2020-01-14T14:28:32Z", "id": "f58707898e5c4b57bfb9855726266742", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["WMLlfyZsQBq9TttyJoOkTQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:07.550828", "expires": + "2020-02-25T09:16:07Z", "id": "a7a9cb55a2b04fb4a7ffe6c898e78c27", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["CrCanmsNRO6mfkDQd-jg1A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:07 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -9243,72 +9250,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:08 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e1e71f0a-8db7-4270-ab5a-6fc11167a3d0 + - req-44c043a1-144d-494d-93ed-cd722e87c507 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:32.693428", "expires": - "2020-01-14T14:28:32Z", "id": "de48b19489064cbda1b53958e61c36c0", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["hqjzj6BiSQ-KxKh2FU8Q0g"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:08.677629", "expires": + "2020-02-25T09:16:08Z", "id": "b82c143105504e29981944631a78c164", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["CuM-uLs-R9yLL_xsyCO3UQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:08 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -9320,7 +9327,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 60310ea7f0ea41848ec9df8892fe506d + - dcb9cabc3214427e902629582b820558 response: status: code: 200 @@ -9333,25 +9340,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008512.79198' + - '1582618569.83735' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008512.79198' + - '1582618569.83735' X-Trans-Id: - - txaf02e8be01044a5e98f8b-005e1dc200 + - txcd92c879f130489592576-005e54d7c9 Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:09 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:10 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -9363,7 +9370,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f58707898e5c4b57bfb9855726266742 + - 237676c268df45d28df8a1296268439a response: status: code: 200 @@ -9376,25 +9383,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008512.87357' + - '1582618571.05556' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008512.87357' + - '1582618571.05556' X-Trans-Id: - - tx7c566af32e1047b5b5333-005e1dc200 + - tx972b1f629413435380e53-005e54d7ca Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:11 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:11 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -9406,7 +9413,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d5738c85ad114f4e87da3556631af2f4 + - a7a9cb55a2b04fb4a7ffe6c898e78c27 response: status: code: 200 @@ -9419,25 +9426,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008512.96724' + - '1582618572.08489' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008512.96724' + - '1582618572.08489' X-Trans-Id: - - tx22fbbd327efd482da2981-005e1dc200 + - tx3a8eba5469df4a7e92158-005e54d7cc Date: - - Tue, 14 Jan 2020 13:28:32 GMT + - Tue, 25 Feb 2020 08:16:12 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:12 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -9449,7 +9456,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - de48b19489064cbda1b53958e61c36c0 + - b82c143105504e29981944631a78c164 response: status: code: 200 @@ -9464,7 +9471,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -9478,18 +9485,18 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - tx16f3a2c0796842c2bae66-005e1dc200 + - tx60a6aee9760f423fac1c9-005e54d7cd Date: - - Tue, 14 Jan 2020 13:28:33 GMT + - Tue, 25 Feb 2020 08:16:13 GMT body: encoding: ASCII-8BIT string: '[{"count": 3, "bytes": 33, "name": "dir_1"}, {"count": 0, "bytes": 0, "name": "dir_2"}, {"count": 0, "bytes": 0, "name": "dir_3"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:33 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:13 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000&marker=dir_3 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000&marker=dir_3 body: encoding: US-ASCII string: '' @@ -9501,7 +9508,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - de48b19489064cbda1b53958e61c36c0 + - b82c143105504e29981944631a78c164 response: status: code: 200 @@ -9516,7 +9523,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -9530,17 +9537,17 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - txa449c478bded4c8aabcd4-005e1dc201 + - tx6b68f37d7bd4461088051-005e54d7ce Date: - - Tue, 14 Jan 2020 13:28:33 GMT + - Tue, 25 Feb 2020 08:16:14 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:33 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:14 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_1?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_1?format=json body: encoding: US-ASCII string: '' @@ -9552,7 +9559,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - de48b19489064cbda1b53958e61c36c0 + - b82c143105504e29981944631a78c164 response: status: code: 200 @@ -9569,26 +9576,26 @@ http_interactions: X-Container-Bytes-Used: - '33' X-Timestamp: - - '1578845111.31102' + - '1582546156.98956' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - tx4db67455b55248bb86a47-005e1dc201 + - tx53b25923f6d445b48f0ab-005e54d7ce Date: - - Tue, 14 Jan 2020 13:28:33 GMT + - Tue, 25 Feb 2020 08:16:15 GMT body: encoding: ASCII-8BIT - string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-01-12T16:05:11.479940", + string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-02-24T12:09:18.782440", "bytes": 11, "name": "file_1", "content_type": "application/octet-stream"}, - {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-01-12T16:05:11.605500", + {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-02-24T12:09:19.306020", "bytes": 11, "name": "file_2", "content_type": "application/octet-stream"}, - {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-01-12T16:05:11.700990", + {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-02-24T12:09:20.144630", "bytes": 11, "name": "file_3", "content_type": "application/octet-stream"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:33 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:15 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_2?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_2?format=json body: encoding: US-ASCII string: '' @@ -9600,7 +9607,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - de48b19489064cbda1b53958e61c36c0 + - b82c143105504e29981944631a78c164 response: status: code: 200 @@ -9617,21 +9624,21 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845111.87461' + - '1582546162.13347' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - tx90f87c47c5d24d8897fda-005e1dc201 + - txd934acb2b92440afa71e8-005e54d7cf Date: - - Tue, 14 Jan 2020 13:28:33 GMT + - Tue, 25 Feb 2020 08:16:15 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:33 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:16 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_3?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_3?format=json body: encoding: US-ASCII string: '' @@ -9643,7 +9650,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - de48b19489064cbda1b53958e61c36c0 + - b82c143105504e29981944631a78c164 response: status: code: 200 @@ -9660,16 +9667,16 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845112.04818' + - '1582546164.45411' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - txf9aea9bc33ff45f2a132e-005e1dc201 + - txbbb27a76ad93471481306-005e54d7d0 Date: - - Tue, 14 Jan 2020 13:28:33 GMT + - Tue, 25 Feb 2020 08:16:16 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:33 GMT -recorded_with: VCR 5.0.0 + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:17 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_network_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_network_targeted_refresh.yml index e266e5e99..b95999dd2 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_network_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_network_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a20a9419-b4c4-4ad7-91c0-b357f4849ddf + - req-e69dae45-80f1-41ae-a6b0-83154236d739 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:35.484845", "expires": - "2020-01-14T14:27:35Z", "id": "04d0730be31e480d93af23fecff89c2c", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["RMPRy5a_RHKrQSz_35BBkw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:41.588185", "expires": + "2020-02-25T09:20:41Z", "id": "5939cc90f3aa4919b85a6d1d5be987ee", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["3LTiV4WiQtelS2VHgdAJwg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:41 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:42 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,11 +114,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:42 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-availability-zone body: encoding: US-ASCII string: '' @@ -130,7 +130,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -143,15 +143,15 @@ http_interactions: Content-Length: - '97' X-Compute-Request-Id: - - req-3a323ab1-8b43-496a-9d21-d9d65a231a75 + - req-4bddafc7-e743-4149-bc8d-8a460419904a Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:43 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "hosts": null, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:43 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -169,73 +169,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:44 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-4e2b4e3e-bbd1-4d49-a2b7-5bb86448a2a4 + - req-23a24d4b-e832-4a77-bb59-9f7f6ea387a7 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:35.725633", "expires": - "2020-01-14T14:27:35Z", "id": "c551a06db05f4ae8870921458363a57b", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["1w4VMd0tRBCJgJUHGziEXA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:44.704147", "expires": + "2020-02-25T09:20:44Z", "id": "6e4fe364cc914e448bc12cf6d6f85d1e", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["GSFKfRoYQ1mch_9Ybp0yeA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:44 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/os-availability-zone.json + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/os-availability-zone.json body: encoding: US-ASCII string: '' @@ -247,28 +247,28 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-fe0b4fce-dd71-490f-9f58-b766864ac718 + - req-9f433c5e-0230-47f9-9d8c-299cd33547c1 Content-Type: - application/json Content-Length: - '82' X-Openstack-Request-Id: - - req-fe0b4fce-dd71-490f-9f58-b766864ac718 + - req-9f433c5e-0230-47f9-9d8c-299cd33547c1 Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:45 GMT body: encoding: ASCII-8BIT string: '{"availabilityZoneInfo": [{"zoneState": {"available": true}, "zoneName": "nova"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:45 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -286,13 +286,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:46 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d6eb8c4a-39e6-450c-9c7f-ab7408e56a7a + - req-0571a840-4bd3-4063-a8c4-54f8dbe8586b Content-Length: - '370' Connection: @@ -301,13 +301,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:35.894861", "expires": - "2020-01-14T14:27:35Z", "id": "72eef7b568cc44669eda3c51b5958895", "audit_ids": - ["8CQQCg0rS5WWGVBoOQD-cg"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:46.522146", "expires": + "2020-02-25T09:20:46Z", "id": "64bdd057d3454ca58646691d9dae87e3", "audit_ids": + ["o6CfLdTYQlOyT-lDpbaSPA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:46 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -322,20 +322,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 72eef7b568cc44669eda3c51b5958895 + - 64bdd057d3454ca58646691d9dae87e3 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:47 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-ff666059-867e-4e7d-8c3b-c957d292dc26 + - req-96b403e7-b434-4ab5-b21c-1739f51b0b78 Content-Length: - '500' Connection: @@ -344,20 +344,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:35 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:47 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -369,69 +369,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:35 GMT + - Tue, 25 Feb 2020 08:20:48 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2a62a744-cda8-4a55-9117-380b6c82602f + - req-b9428aba-65e7-4407-851e-f8aa05a42f76 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:36.011072", "expires": - "2020-01-14T14:27:35Z", "id": "0fe110efd66844e6a52ab81cec2234c2", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["bMnHf-hBS-acK_5cjHmCsA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:48.818532", "expires": + "2020-02-25T09:20:48Z", "id": "54b7758b737e4279b48cf413828e4d97", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["9-m4wOLUTHWUBQbyCblXGA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:49 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -446,7 +446,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 54b7758b737e4279b48cf413828e4d97 response: status: code: 200 @@ -455,9 +455,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:49 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -465,14 +465,14 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:50 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -484,69 +484,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7c110dba-17b5-4344-b94b-08d7b5c0440f + - req-3223050f-8bb7-470d-b5d4-eb5ac46db18a Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:36.112566", "expires": - "2020-01-14T14:27:36Z", "id": "fd923dc0534d43f2ae5c87b531e3a8ff", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["-L3098i8Tb6ZNTqGnTdTqg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:50.836417", "expires": + "2020-02-25T09:20:50Z", "id": "328ff9443c9446d9a970208bcdd05c84", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["IPUBFqiTTiGx96mrXKEfKA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:51 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -561,7 +561,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 328ff9443c9446d9a970208bcdd05c84 response: status: code: 200 @@ -570,9 +570,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:52 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -580,8 +580,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -599,69 +599,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:53 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1a25750b-a1dc-4cbb-ae8d-87383d7f17be + - req-04e09660-7c57-4589-bdf9-b7ed49aa173d Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:36.231103", "expires": - "2020-01-14T14:27:36Z", "id": "c47762d6ba8a45d8b7f5fd3a26283ea7", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["YUJYrCvoSsqS_JTC6JVhmA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:53.067781", "expires": + "2020-02-25T09:20:53Z", "id": "9d5299bc447a460c96b9bbfb5b7b7a8e", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["_3nm5vFsT8y530nVn2ONww"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:53 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -676,7 +676,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e response: status: code: 200 @@ -685,9 +685,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:54 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -695,11 +695,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:54 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -711,7 +711,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -722,31 +722,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-a01ff6c1-8bca-4c8f-be08-a49dc8504a93 + - req-f57a3bc4-f3a2-4039-b62e-a60c7de68d57 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:55 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:46.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:47.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:55 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -758,7 +758,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -769,31 +769,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-30bfae45-a4a8-4366-a0f1-a99f0ae06a48 + - req-76d69496-f7b7-41bb-af27-31db39c90e3c Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:56 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:46.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:47.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:56 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -805,7 +805,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -816,31 +816,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-9e7f02be-0f68-43c5-bfce-94a927f4fd65 + - req-dfb74cfd-a216-4805-bd23-037137956a07 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:57 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:47.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:57 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -852,7 +852,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -863,31 +863,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-007f38ab-e502-4cd3-baf9-a3c4eca94944 + - req-8cd38bbc-785b-40c3-ad2d-df2e8d261975 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:58 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:57.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:58 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -899,7 +899,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -910,31 +910,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-02893e98-241b-4ebc-ba6a-84539969126b + - req-e472a2b5-0ee5-4597-9437-7f0e854687ed Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:20:59 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:57.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:59 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -946,7 +946,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -957,31 +957,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-94a0673d-ca2e-47ec-91fd-fb0163c1ee47 + - req-ad271d97-5043-455e-84ca-ab59e831cb8e Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:00 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:57.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:00 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-services?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-services?limit=1000 body: encoding: US-ASCII string: '' @@ -993,7 +993,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1004,31 +1004,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-fa41012a-1a60-4af9-8a0e-63504a5410f9 + - req-99e6a805-f9b1-43ee-a95a-f92a270c37d4 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:01 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:20:52.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:57.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:01 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-services?limit=1000&marker=5 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-services?limit=1000&marker=5 body: encoding: US-ASCII string: '' @@ -1040,7 +1040,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1051,31 +1051,31 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1070' + - '1120' X-Compute-Request-Id: - - req-0d30bf42-411a-4373-9784-47da93e48a8d + - req-eab00311-a190-49c0-bc87-40c38aa0b6e6 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:02 GMT body: encoding: ASCII-8BIT string: '{"services": [{"status": "enabled", "binary": "nova-consoleauth", "host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": "up", - "disabled_reason": null, "id": 1, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-scheduler", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": + "up", "disabled_reason": null, "id": 1, "updated_at": "2020-02-25T08:20:54.000000"}, + {"status": "enabled", "binary": "nova-scheduler", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", "state": "up", "disabled_reason": null, "id": 2, "updated_at": - "2020-01-14T13:27:33.000000"}, {"status": "enabled", "binary": "nova-conductor", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 3, "updated_at": "2020-01-14T13:27:32.000000"}, - {"status": "enabled", "binary": "nova-compute", "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "2020-02-25T08:20:56.000000"}, {"status": "enabled", "binary": "nova-conductor", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 3, "updated_at": "2020-02-25T08:20:53.000000"}, + {"status": "enabled", "binary": "nova-compute", "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "nova", "state": "up", "disabled_reason": null, "id": 4, "updated_at": - "2020-01-14T13:27:34.000000"}, {"status": "enabled", "binary": "nova-cert", - "host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "zone": "internal", "state": - "up", "disabled_reason": null, "id": 5, "updated_at": "2020-01-14T13:27:32.000000"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + "2020-02-25T08:21:02.000000"}, {"status": "enabled", "binary": "nova-cert", + "host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "zone": "internal", + "state": "up", "disabled_reason": null, "id": 5, "updated_at": "2020-02-25T08:20:57.000000"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:02 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000 body: encoding: US-ASCII string: '' @@ -1087,7 +1087,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1098,49 +1098,50 @@ http_interactions: Content-Type: - application/json Content-Length: - - '3161' + - '3133' X-Compute-Request-Id: - - req-7a594fdf-c86a-459b-b246-1468d6fd25ad + - req-155a1a6d-d597-465c-88fa-3d4085af0597 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:03 GMT body: encoding: ASCII-8BIT - string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", + string: '{"flavors": [{"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/2", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/2", + 0, "disk": 1, "id": "1"}, {"name": "m1.small", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/2", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/2", "rel": "bookmark"}], "ram": 2048, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/3", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/3", + 0, "disk": 20, "id": "2"}, {"name": "m1.medium", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/3", "rel": "bookmark"}], "ram": 4096, "OS-FLV-DISABLED:disabled": false, "vcpus": 2, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 40, "id": "3"}, {"name": "m1.large", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/4", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/4", + 0, "disk": 40, "id": "3"}, {"name": "m1.ems_refresh_spec", "links": [{"href": + "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": + 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}, {"name": "m1.large", + "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/4", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/4", "rel": "bookmark"}], "ram": 8192, "OS-FLV-DISABLED:disabled": false, "vcpus": 4, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/5", + 0, "disk": 80, "id": "4"}, {"name": "m1.xlarge", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/5", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/5", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec", "links": [{"href": - "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": - 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}, {"name": "m1.ems_refresh_spec_private", - "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0", + 0, "disk": 160, "id": "5"}, {"name": "m1.ems_refresh_spec_private", "links": + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3", "rel": "bookmark"}], "ram": 16384, "OS-FLV-DISABLED:disabled": false, "vcpus": 8, "swap": "", "os-flavor-access:is_public": false, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 0, "disk": 160, "id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + 0, "disk": 160, "id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:04 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=c75b1d50-032c-4c2b-b762-a6e6568c64c0 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/detail?all_tenants=True&is_public=None&limit=1000&marker=610a5fc0-2e7b-4e06-af16-c70148b858e3 body: encoding: US-ASCII string: '' @@ -1152,7 +1153,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1165,17 +1166,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-948f3f16-d38d-4875-90ae-9427690a3ec0 + - req-ea7d62cf-0ce4-4f0a-b5db-f6e1e64201c8 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:04 GMT body: encoding: ASCII-8BIT string: '{"flavors": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:04 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/c75b1d50-032c-4c2b-b762-a6e6568c64c0/os-flavor-access + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/610a5fc0-2e7b-4e06-af16-c70148b858e3/os-flavor-access body: encoding: US-ASCII string: '' @@ -1187,7 +1188,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1200,15 +1201,15 @@ http_interactions: Content-Length: - '123' X-Compute-Request-Id: - - req-b8c1fc4b-b28c-4cbd-a149-0645a4295c79 + - req-55b145a0-2686-4529-b2f9-85cd5d666f52 Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:05 GMT body: encoding: ASCII-8BIT - string: '{"flavor_access": [{"tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "flavor_id": "c75b1d50-032c-4c2b-b762-a6e6568c64c0"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:36 GMT + string: '{"flavor_access": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "flavor_id": "610a5fc0-2e7b-4e06-af16-c70148b858e3"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:05 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1226,76 +1227,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:36 GMT + - Tue, 25 Feb 2020 08:21:06 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-73c69079-564a-4e1c-86a3-782500873dea + - req-fd278bfc-2a63-408b-a936-04ad2cf4cdf4 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:36.994592", "expires": - "2020-01-14T14:27:36Z", "id": "ec8bcf5bc7724d46936d796f8fc6be6f", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["WnzBv-oES46M4DmTa2BEkQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:06.532638", "expires": + "2020-02-25T09:21:06Z", "id": "67ea976e6cfc406080ef6d4acabc1e70", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["7-yH0uWhSSGWnTjb3HQiGg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:06 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1307,75 +1308,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:07 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f994c5b8-9e90-4f3e-bdac-c0d41c6aecb6 + - req-174b1b6a-c3e1-42ed-b1b4-ca8cb7e7daea Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:37.100107", "expires": - "2020-01-14T14:27:37Z", "id": "b96cfae901c5481599c40dde40cc46af", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["9sRsMVsDQvKEwxBPArQRDQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:07.670366", "expires": + "2020-02-25T09:21:07Z", "id": "ddaa376b08574db183ae251433ade382", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["nUolwvQ6SUqSPciaCSrqGg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:07 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1387,69 +1388,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:08 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-ced844dc-bc50-4b6a-8fbb-cfaaf6350078 + - req-e1df3e94-ea40-4e97-b6c2-f6340c6642ce Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:37.188223", "expires": - "2020-01-14T14:27:37Z", "id": "72004deb4af94a76b463c7fc981ab48c", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["DLiuVxBSQZiaimNZiaSBXg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:08.923334", "expires": + "2020-02-25T09:21:08Z", "id": "a566ddd999004c0d9d95a9da8051c7ea", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["Me6P9ciNSYieH9y_0LNmNw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:09 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1467,69 +1468,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:10 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3818ea60-0968-46e7-a185-953a120fe4b1 + - req-a30890d6-d235-492d-ab0c-73230f87a591 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:37.269435", "expires": - "2020-01-14T14:27:37Z", "id": "393f746d01e64f6caa5661f56714fcc1", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["qR7XyMl6S1OeqoOKLHC70g"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:10.177108", "expires": + "2020-02-25T09:21:10Z", "id": "1656691a446e49db869bf3aaabb1b1be", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["rcqpswV_Tf-N3U7bQWWTOA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:10 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1544,7 +1545,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b96cfae901c5481599c40dde40cc46af + - 67ea976e6cfc406080ef6d4acabc1e70 response: status: code: 200 @@ -1555,54 +1556,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-b7eda3b0-6a98-49b9-b3fc-08b7dfa44bfd + - req-654096fb-ac1b-4e94-914c-5621133383f6 Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:11 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:11 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1614,7 +1615,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b96cfae901c5481599c40dde40cc46af + - 67ea976e6cfc406080ef6d4acabc1e70 response: status: code: 200 @@ -1625,14 +1626,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-c7a33bbf-71bf-49dc-8cd7-11c20a73cb9b + - req-0cdfbdd7-afbf-47d5-ba4b-0a8344a867bd Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:12 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:12 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1647,7 +1648,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 72004deb4af94a76b463c7fc981ab48c + - ddaa376b08574db183ae251433ade382 response: status: code: 200 @@ -1658,54 +1659,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-476fa3ef-4d05-4b1f-bd30-52f66e4e7dc0 + - req-64bc6f78-2f5b-4e66-a478-22d4d56fbdcf Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:13 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:13 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1717,7 +1718,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 72004deb4af94a76b463c7fc981ab48c + - ddaa376b08574db183ae251433ade382 response: status: code: 200 @@ -1728,14 +1729,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-77b80d66-1f32-469b-bc4a-9e244643cd81 + - req-b2c4cd84-3c34-40b4-88af-cd76eb1ce758 Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:14 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:14 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1750,7 +1751,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ec8bcf5bc7724d46936d796f8fc6be6f + - a566ddd999004c0d9d95a9da8051c7ea response: status: code: 200 @@ -1761,54 +1762,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-918d039c-4535-41d3-8b29-4d48eed06f57 + - req-50acff59-8f29-443c-abe0-9d412c59669f Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:15 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:15 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1820,7 +1821,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ec8bcf5bc7724d46936d796f8fc6be6f + - a566ddd999004c0d9d95a9da8051c7ea response: status: code: 200 @@ -1831,14 +1832,14 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-583ee4c4-5e4f-4125-a102-a0e93e403c47 + - req-48b8fa77-af1a-4350-a4b9-e4850ef2a203 Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:15 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:16 GMT - request: method: get uri: http://11.22.33.44:9292/v2/images?limit=1000 @@ -1853,7 +1854,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 393f746d01e64f6caa5661f56714fcc1 + - 1656691a446e49db869bf3aaabb1b1be response: status: code: 200 @@ -1864,54 +1865,54 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-864a7a25-a80b-4ba9-ac56-6083916b5b79 + - req-03485f4c-d82d-472e-bc58-50185112efcd Date: - - Tue, 14 Jan 2020 13:27:37 GMT + - Tue, 25 Feb 2020 08:21:16 GMT body: encoding: ASCII-8BIT string: '{"images": [{"image_state": "available", "container_format": "bare", - "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-01-12T16:06:28Z", "file": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75/file", "owner": "8eb4b49207904f6eb33283732571bc0e", - "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", "size": 22085632, - "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": "snapshot", "self": - "/v2/images/09af400e-03db-45fb-bd09-c930ac4edd75", "disk_format": "qcow2", - "id": "09af400e-03db-45fb-bd09-c930ac4edd75", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "min_ram": 0, "ramdisk_id": null, "updated_at": "2020-02-24T12:12:13Z", "file": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751/file", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", + "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", "size": 22085632, + "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": "snapshot", "self": + "/v2/images/9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "disk_format": "qcow2", + "id": "9702f4f9-b0cc-4f33-a0ae-1cdb69da3751", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "EmsRefreshSpec-Shelved-shelved", - "checksum": "e7b180a8eeae659fcc257005e65e0dda", "created_at": "2020-01-12T16:06:23Z", + "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "EmsRefreshSpec-Shelved-shelved", + "checksum": "22d2d1e802251a02cf1abb35301191cb", "created_at": "2020-02-24T12:11:49Z", "protected": false, "schema": "/v2/schemas/image"}, {"image_state": "available", "container_format": "bare", "min_ram": 0, "ramdisk_id": null, "updated_at": - "2020-01-12T16:06:07Z", "file": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095/file", - "owner": "8eb4b49207904f6eb33283732571bc0e", "base_image_ref": "a5098c2b-410f-417d-be32-faedd0947b50", - "size": 22020096, "user_id": "429846f1f4c9494dab287d7d4554e465", "image_type": - "snapshot", "self": "/v2/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", "disk_format": - "qcow2", "id": "f8539a54-cdb8-4fc2-9409-234a67ebb095", "owner_id": "8eb4b49207904f6eb33283732571bc0e", + "2020-02-24T12:10:58Z", "file": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8/file", + "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "base_image_ref": "23a8b2f0-991f-4792-85ba-385bba43b452", + "size": 22020096, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "image_type": + "snapshot", "self": "/v2/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "disk_format": + "qcow2", "id": "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "owner_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "active", "image_location": "snapshot", "tags": [], "kernel_id": null, "visibility": "private", "min_disk": 1, "virtual_size": null, "instance_uuid": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "EmsRefreshSpec-PoweredOn-SnapShot", - "checksum": "2533a85133c7449f2fe6de2257e5fb8c", "created_at": "2020-01-12T16:06:03Z", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "name": "EmsRefreshSpec-PoweredOn-SnapShot", + "checksum": "fd97fa85c845933f42f2ae3219371635", "created_at": "2020-02-24T12:10:47Z", "protected": false, "schema": "/v2/schemas/image"}, {"status": "active", "name": - "EmsRefreshSpec-Image", "tags": [], "container_format": "bare", "created_at": - "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": "qcow2", "updated_at": - "2020-01-12T16:04:10Z", "visibility": "private", "self": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", - "min_disk": 0, "protected": false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", - "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", "checksum": - "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "EmsRefreshSpec-Image-Private", "tags": [], "container_format": "bare", "created_at": + "2020-02-24T12:07:28Z", "size": 13287936, "disk_format": "qcow2", "updated_at": + "2020-02-24T12:08:05Z", "visibility": "private", "self": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737", + "min_disk": 0, "protected": false, "id": "243f4496-22e3-4903-90c2-c6d266c19737", + "file": "/v2/images/243f4496-22e3-4903-90c2-c6d266c19737/file", "checksum": + "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}, {"status": - "active", "name": "EmsRefreshSpec-Image-Private", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:34Z", "visibility": "private", "self": - "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75", "min_disk": 0, "protected": - false, "id": "4de9e1af-7a39-4491-b800-946591d9da75", "file": "/v2/images/4de9e1af-7a39-4491-b800-946591d9da75/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:37 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:17 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=4de9e1af-7a39-4491-b800-946591d9da75 + uri: http://11.22.33.44:9292/v2/images?limit=1000&marker=23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -1923,7 +1924,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 393f746d01e64f6caa5661f56714fcc1 + - 1656691a446e49db869bf3aaabb1b1be response: status: code: 200 @@ -1934,17 +1935,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-5656d87e-fc41-4024-866c-334c956bcb1a + - req-d9b79683-b812-40ee-b835-b630b531ed43 Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:18 GMT body: encoding: ASCII-8BIT string: '{"images": [], "schema": "/v2/schemas/images", "first": "/v2/images?limit=1000"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:18 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1956,7 +1957,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1969,22 +1970,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-a91afbd6-283e-420d-bbfa-01a12bcf5d64 + - req-11f62ab1-dc72-4198-9ab5-7f4b7352ffdf Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:19 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:19 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1996,7 +1997,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2009,22 +2010,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-3791507b-33ed-4b95-836c-8bd602d1609a + - req-d90b0ef9-3c6b-47af-b925-a993ee71012c Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:20 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:20 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2036,7 +2037,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2049,22 +2050,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-9d38db97-0754-4efc-b0e1-7f53707e7fa4 + - req-b3fa25db-0ac2-4567-b443-bdd4d05c1647 Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:21 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:21 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2076,7 +2077,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2089,22 +2090,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-5a1e2cea-5c29-4888-95cb-213356337741 + - req-b05a8a7f-bed2-4727-8e03-26d793e2349b Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:22 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:22 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2116,7 +2117,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2129,22 +2130,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-093056e2-712e-44e8-9053-e093791655d7 + - req-d8c7418e-3ce9-44f9-9b4c-951799345175 Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:23 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:23 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2156,7 +2157,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2169,22 +2170,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-c9a6990a-c6cb-4378-a567-55e672ba0d6b + - req-0d962554-bcff-4a39-90a8-db16a9e4133a Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:24 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:24 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -2196,7 +2197,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2209,22 +2210,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-dc1f52bf-8229-43f5-a9b7-5f45229bc77f + - req-95057f9e-5a1f-4a5e-bf99-95a425948004 Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:25 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:25 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -2236,7 +2237,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -2249,19 +2250,19 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-0b742641-e256-4390-9b43-eef3d24190db + - req-945ec4d7-9e97-4108-848a-49f9fdbafb00 Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:26 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:26 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2279,76 +2280,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3c786109-0d4f-49cd-9330-d002f249a56e + - req-e9498604-b814-453d-b107-ad8ad25ee400 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:38.747366", "expires": - "2020-01-14T14:27:38Z", "id": "645bfcc0392f48c7a2db0f4641aaab26", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["BQraGxfMS-mJCoTi5XY85g"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:27.936952", "expires": + "2020-02-25T09:21:27Z", "id": "d73a73e73c78423fa97e6c7da59d2833", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["UveYjcDIQhGYATgBludGSg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:28 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2360,75 +2361,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e24c0ba2-e12f-43ba-b511-47785b4c9f15 + - req-d89f7574-4ae6-4acd-a0e0-21b7d0b62112 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:38.851811", "expires": - "2020-01-14T14:27:38Z", "id": "7d5082ca7e3345328675922daa0fb8e0", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["Trte4CFJRMWs1KszE6-DdQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:28.956413", "expires": + "2020-02-25T09:21:28Z", "id": "f58364e5bd214f949aa071bdcf53183d", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["dHGTlyMRS5uIogpD9wd2PQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2440,69 +2441,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-82e0c7a0-4b95-4f3e-9d2e-a01072ce45a4 + - req-8a1bcede-5c9f-4928-9032-5e8882499e40 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:38.953099", "expires": - "2020-01-14T14:27:38Z", "id": "cef8ae4e5d1048859850b72dccc45c2c", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["fpn35db2R4yk8w9KP74zOg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:29.787117", "expires": + "2020-02-25T09:21:29Z", "id": "d6a885038db24255a8f378f35e440c38", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["yCPpZacvTEGjLoUTFlMS2Q"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:38 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:30 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2520,72 +2521,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:38 GMT + - Tue, 25 Feb 2020 08:21:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-ed4689c8-9808-41b0-863d-911369331e03 + - req-d329dd8f-743b-4719-beff-a943bd85756e Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:39.057562", "expires": - "2020-01-14T14:27:39Z", "id": "19d6e3c247fd4f85ab3d5bd082afbbaf", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["iT6ObVFJSSGkOQ5uSr1ClQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:30.838007", "expires": + "2020-02-25T09:21:30Z", "id": "1c9aa324373645da9dca34d46eefcf02", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["OAPi6mbDQXyBb56dovcaWg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:31 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2597,7 +2598,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7d5082ca7e3345328675922daa0fb8e0 + - d73a73e73c78423fa97e6c7da59d2833 response: status: code: 200 @@ -2608,17 +2609,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-3a136667-88ae-4382-9f24-8e049cbcf78e + - req-0a601366-64c5-44d9-bc7e-40768f465e79 Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:31 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:31 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2630,7 +2631,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - cef8ae4e5d1048859850b72dccc45c2c + - f58364e5bd214f949aa071bdcf53183d response: status: code: 200 @@ -2641,17 +2642,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-8fafa088-4138-46f1-979d-bb0670f4d2db + - req-40eefb1d-6743-46bb-b1a3-0f01f26dcfca Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:32 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:33 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2663,7 +2664,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645bfcc0392f48c7a2db0f4641aaab26 + - d6a885038db24255a8f378f35e440c38 response: status: code: 200 @@ -2674,17 +2675,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-116096a3-5575-4f61-b026-61ff09a9959d + - req-a498cae3-f34f-4972-8095-d61ddf8d03b4 Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:33 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:34 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -2696,7 +2697,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2705,11 +2706,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-200ab9f3-1f54-4e25-b79b-14063642b02a + - req-4fc966a3-ee31-4b65-bd2d-e2c829b6f576 Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:34 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -2718,35 +2719,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:34 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -2758,7 +2759,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2769,17 +2770,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-e7af46c9-583c-4db4-a5a7-f16ed53898f0 + - req-5bc06c8b-693c-43fd-b238-6843f77fd742 Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:35 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:35 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -2791,7 +2792,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2800,11 +2801,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-f4e181ea-4649-4533-8329-5f6cb14926c9 + - req-507e7e93-8dfb-4a5b-9ef6-445e2741462d Date: - - Tue, 14 Jan 2020 13:27:39 GMT + - Tue, 25 Feb 2020 08:21:36 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2813,28 +2814,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:39 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:36 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -2846,7 +2847,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2855,11 +2856,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-0bd3d541-ddfa-4f8f-9e26-9e725be70fdc + - req-839ba876-48fa-4e84-81ca-c82a82419057 Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:37 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2868,28 +2869,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:38 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -2901,7 +2902,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2910,11 +2911,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-eda9ccb6-e57f-4c62-a123-733c3d0bbb42 + - req-d695e24a-7cdc-4bfa-a1ca-045cd3af2910 Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:38 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -2923,28 +2924,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:39 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/template body: encoding: US-ASCII string: '' @@ -2956,7 +2957,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -2967,9 +2968,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-91c41c6c-8c3a-45be-8d1a-86695dd0c347 + - req-182830da-8b6a-492c-a768-e1edaba86e27 Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:39 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3025,11 +3026,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:40 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -3041,7 +3042,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -3050,26 +3051,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-e3d17278-5c07-4d01-8c05-63f9c26efbf1 + - req-7ff8a27e-ebd8-4b75-867e-6e97620b815b Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:41 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:41 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3081,7 +3082,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3094,17 +3095,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-2807a6bc-fcd1-40ac-ae7b-953582609627 + - req-034e3486-e09a-47aa-b195-9b5f44824b4c Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:41 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:42 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3116,7 +3117,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3129,17 +3130,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-701a2e8c-eb0b-4ea5-bc62-5ffcf90897bb + - req-2618b20a-3c21-4111-9c3e-acf99927e4b8 Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:42 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3151,7 +3152,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3164,17 +3165,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-7b91ca48-3d72-4f04-9aef-0bc4658b9660 + - req-e7493e47-7ac5-4459-af14-a853a410fdfa Date: - - Tue, 14 Jan 2020 13:27:40 GMT + - Tue, 25 Feb 2020 08:21:44 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:40 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:44 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/detail?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -3186,7 +3187,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3197,200 +3198,200 @@ http_interactions: Content-Type: - application/json Content-Length: - - '17285' + - '17413' X-Compute-Request-Id: - - req-67fd42ba-ff1d-4922-8c0f-67b75c1289e1 + - req-24a067a4-656c-4c5c-9e5f-d50bdc4a7508 Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:45 GMT body: encoding: ASCII-8BIT - string: '{"servers": [{"status": "ACTIVE", "updated": "2020-01-13T14:54:49Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", "version": 4, "addr": "192.168.1.10", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d8:67:cd", + string: '{"servers": [{"status": "ACTIVE", "updated": "2020-02-24T12:11:21Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "192.168.1.7", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:44:a8:cf", "version": 4, "addr": "172.16.17.9", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/6bda6c84-4790-4418-95eb-75258de017fd", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/6bda6c84-4790-4418-95eb-75258de017fd", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/00fd0062-3e72-4556-ae3c-e146cd0beb68", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "f8539a54-cdb8-4fc2-9409-234a67ebb095", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/f8539a54-cdb8-4fc2-9409-234a67ebb095", + "b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/b4aa739d-4bab-4ac6-aed1-c80a26896ce8", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000009", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:14.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "6bda6c84-4790-4418-95eb-75258de017fd", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:11:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", - "created": "2020-01-12T16:06:08Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-FromSnapshot", + "created": "2020-02-24T12:11:02Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}, {"status": "SHELVED_OFFLOADED", "updated": - "2020-01-12T16:06:29Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d0:fe:e0", - "version": 4, "addr": "192.168.1.9", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:d0:fe:e0", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/0575c680-eace-45d8-bdd8-4a6f389074f7", + "2020-02-24T12:12:17Z", "hostId": "", "OS-EXT-SRV-ATTR:host": null, "addresses": + {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d1:51:2b", + "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:d1:51:2b", "version": 4, "addr": "172.16.17.8", "OS-EXT-IPS:type": + "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/9d6682b9-9be0-4468-a553-a6d222cc0088", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "shelved_offloaded", "OS-EXT-SRV-ATTR:instance_name": "instance-00000008", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:46.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - null, "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "security_groups": + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + null, "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Shelved", "created": "2020-01-12T16:05:35Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Shelved", "created": "2020-02-24T12:10:09Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-01-12T16:06:24Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", "version": 4, "addr": "192.168.1.8", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:58:6b:1a", + "", "metadata": {}}, {"status": "SUSPENDED", "updated": "2020-02-24T12:12:02Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "192.168.1.5", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:49:fa:22", "version": 4, "addr": "172.16.17.7", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/cadd8a5b-232c-4af8-859d-77c939e25b49", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "suspended", "OS-EXT-SRV-ATTR:instance_name": "instance-00000007", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:45.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "security_groups": + "2020-02-24T12:10:22.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Suspended", "created": "2020-01-12T16:05:34Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Suspended", "created": "2020-02-24T12:10:06Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-01-13T14:56:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", "version": 4, "addr": "192.168.1.7", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d9:50:af", + "", "metadata": {}}, {"status": "PAUSED", "updated": "2020-02-24T12:11:47Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "192.168.1.4", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:ec:3b:3f", "version": 4, "addr": "172.16.17.6", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/1e4b01de-8c16-41d3-9e53-f45403de2eac", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/3792ff5a-3236-4123-b5b8-2e48a497a3cf", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "paused", "OS-EXT-SRV-ATTR:instance_name": "instance-00000006", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:44.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "security_groups": + "2020-02-24T12:10:21.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "security_groups": [{"name": "EmsRefreshSpec-SecurityGroup"}], "OS-SRV-USG:terminated_at": null, - "OS-EXT-AZ:availability_zone": "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", - "name": "EmsRefreshSpec-Paused", "created": "2020-01-12T16:05:32Z", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": + "OS-EXT-AZ:availability_zone": "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "name": "EmsRefreshSpec-Paused", "created": "2020-02-24T12:10:01Z", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 3, "config_drive": - "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:55:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", "version": 4, "addr": "192.168.3.9", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", + "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:24Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "192.168.3.9", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "172.16.17.5", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", + [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": "", "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000005", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:50.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", - "created": "2020-01-12T16:05:30Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", + "created": "2020-02-24T12:09:58Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [{"id": - "2042bbec-e245-405e-8e77-cde0205ab38e"}], "accessIPv4": "", "accessIPv6": + "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "ACTIVE", "updated": "2020-01-13T14:54:40Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", - "version": 4, "addr": "192.168.1.6", "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": - "fa:16:3e:6c:e7:30", "version": 4, "addr": "172.16.17.4", "OS-EXT-IPS:type": - "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:10:58Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:9f:ba:08", "version": 4, "addr": "192.168.1.3", "OS-EXT-IPS:type": + "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": + "172.16.17.4", "OS-EXT-IPS:type": "floating"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000004", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:00.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:10:37.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "da40eae5-9021-4406-939e-d9dd9b528f3d", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn", "created": - "2020-01-12T16:05:28Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": - "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "accessIPv4": "", "accessIPv6": + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn", "created": + "2020-02-24T12:09:56Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": + "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": - {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", - "OS-EXT-SRV-ATTR:host": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": - {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:fb:9c:40", - "version": 4, "addr": "192.168.1.5", "OS-EXT-IPS:type": "fixed"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/751768e7-caf9-4d0a-8332-3149f05e4af5", + {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", + "OS-EXT-SRV-ATTR:host": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "addresses": {"EmsRefreshSpec-NetworkPrivate": [{"OS-EXT-IPS-MAC:mac_addr": + "fa:16:3e:8d:c7:fb", "version": 4, "addr": "192.168.0.5", "OS-EXT-IPS:type": + "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/fd35db12-3284-414b-b225-c3c8b7fa00ee", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000003", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack3-wordpress_instance-ofo5r5sqfrqk", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack3-wordpress_instance-map6mpkxczzn", + "created": "2020-02-24T12:09:34Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:af:c3:0b", "version": 4, "addr": "192.168.1.4", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/31b66a4b-0971-4a6e-a171-3da45ea56100", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9c:8d:f3", "version": 4, "addr": "192.168.0.4", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/7b746476-46b4-4edb-aee4-69f5c78407ae", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "31b66a4b-0971-4a6e-a171-3da45ea56100", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000002", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack2-wordpress_instance-57hrtur7dpyy", - "created": "2020-01-12T16:05:19Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack2-wordpress_instance-uy3qefkmuu3r", + "created": "2020-02-24T12:09:32Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}, {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:32:9d:1b", "version": 4, "addr": "192.168.1.3", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/5c489d02-0165-4746-9568-3f1a616b89f1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/servers/5c489d02-0165-4746-9568-3f1a616b89f1", + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}, {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:e6:f0:9d", "version": 4, "addr": "192.168.0.3", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", + "rel": "self"}, {"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/8eb4b49207904f6eb33283732571bc0e/flavors/1", - "rel": "bookmark"}]}, "id": "5c489d02-0165-4746-9568-3f1a616b89f1", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/e9bb9a5ed00244e0b3c288ed495abbf9/flavors/1", + "rel": "bookmark"}]}, "id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack1-wordpress_instance-xhskaxkrwj7l", - "created": "2020-01-12T16:05:16Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack1-wordpress_instance-mlbps434huur", + "created": "2020-02-24T12:09:30Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:45 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/detail?limit=1000&marker=5c489d02-0165-4746-9568-3f1a616b89f1 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/detail?limit=1000&marker=c6a48c9a-005d-42dc-b30d-787925b7e99f body: encoding: US-ASCII string: '' @@ -3402,7 +3403,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3415,17 +3416,17 @@ http_interactions: Content-Length: - '15' X-Compute-Request-Id: - - req-e3f95505-6d84-4328-b528-06665d8f34d6 + - req-e3718483-9428-4df8-9df8-6960e3e892a7 Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:46 GMT body: encoding: ASCII-8BIT string: '{"servers": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:46 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/template body: encoding: US-ASCII string: '' @@ -3437,7 +3438,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -3448,9 +3449,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-20f100be-be2e-44ad-99d5-1923a1eca47c + - req-0e1be02d-694c-4b47-8dd8-259d620d8a92 Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:47 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3506,11 +3507,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:48 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -3522,7 +3523,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -3531,26 +3532,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-1cd042a1-1ce5-420e-b48b-5e9fa8c6b371 + - req-44bfacf2-10f0-426f-aa46-35be893d2b40 Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:48 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:48 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/template body: encoding: US-ASCII string: '' @@ -3562,7 +3563,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -3573,9 +3574,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-703a29b8-26d0-4fde-a218-76a6320e167c + - req-1a5c96a3-8d07-46a3-ae75-06206102e2be Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:49 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -3631,11 +3632,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:49 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -3647,7 +3648,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 19d6e3c247fd4f85ab3d5bd082afbbaf + - 1c9aa324373645da9dca34d46eefcf02 response: status: code: 200 @@ -3656,26 +3657,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-53d91005-d8e5-4e5f-8169-9ec5870abc65 + - req-43205a16-7ec5-4312-9446-ee58dc5cd5de Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:50 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:50 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -3687,7 +3688,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0fe110efd66844e6a52ab81cec2234c2 + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3700,21 +3701,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-008cafdb-72c1-4233-b027-74fbc096e30d + - req-ce1e0960-0b35-4662-be39-2d0401be43d4 Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:51 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "2db86326708a44629d0a27103e6daa04", "instances": + 10, "key_pairs": 100, "id": "4f018636e6414466b02641748cd91484", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:51 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -3726,7 +3727,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd923dc0534d43f2ae5c87b531e3a8ff + - 54b7758b737e4279b48cf413828e4d97 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3739,21 +3740,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-fc7529e3-0c58-4b08-89ed-c82d94839e45 + - req-31a6fab9-f63f-40cc-a5b0-28835fbfbbdd Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:52 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "56ac37685be246aba905e0301d595693", "instances": + 10, "key_pairs": 100, "id": "6152fef686644e46820e3d266fc8a5ce", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:52 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -3765,7 +3766,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 328ff9443c9446d9a970208bcdd05c84 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3778,21 +3779,21 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-e5eb926c-72b3-4de2-a22b-6cf8ee40a6b7 + - req-7906e3a1-1bd3-4bb4-85d7-a7004559066c Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:53 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "66df12d5801449a2b529d3a1bbf279b0", "instances": + 10, "key_pairs": 100, "id": "dadaba8276f24d6eb2526ffa43cd4e33", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:53 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -3804,7 +3805,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -3817,24 +3818,24 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-35b87826-2fc8-44c5-b674-eaa03dc87b51 + - req-ee396a9b-526f-4352-9402-e65fe776aa3a Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:54 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"injected_file_content_bytes": 10240, "metadata_items": 128, "server_group_members": 10, "server_groups": 10, "ram": 51200, "floating_ips": - 10, "key_pairs": 100, "id": "8eb4b49207904f6eb33283732571bc0e", "instances": + 10, "key_pairs": 100, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "instances": 10, "security_group_rules": 20, "injected_files": 5, "cores": 20, "fixed_ips": -1, "injected_file_path_bytes": 255, "security_groups": 10}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:54 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3846,75 +3847,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:55 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-bb9c6f33-ab64-41b8-b757-70d67960edc6 + - req-0370ece6-480c-4d4c-9aac-57331c2dc625 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:41.882952", "expires": - "2020-01-14T14:27:41Z", "id": "37396785671c40e58453cb0c03853c62", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["mAlN8xYwSHqm8MbJSIyiAw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:55.826581", "expires": + "2020-02-25T09:21:55Z", "id": "ec2678ac1d8d44fea8ed2f62db620f4e", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["mYP-5cx5SIGzALfm06Fjcw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:41 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:55 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -3926,69 +3927,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:41 GMT + - Tue, 25 Feb 2020 08:21:57 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e746f2f4-ef58-4141-98a4-1fbdff4e906d + - req-a8acbf16-1f85-4acf-9d9d-a5b7c4ec4af4 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:41.986674", "expires": - "2020-01-14T14:27:41Z", "id": "53252c2371d84a87be0722e6e230a29f", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["AQkcozgCSIiTYMgQACIRvg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:57.240479", "expires": + "2020-02-25T09:21:57Z", "id": "dd736c6e8b0145a98ab3c275c3e45a9c", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["pQx_B2a4SD2mFcPMDysuig"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:42 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:57 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4006,72 +4007,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:42 GMT + - Tue, 25 Feb 2020 08:21:58 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e0624606-1ee2-4be7-bc2b-4e439ea7d514 + - req-fdff8244-5477-4f4e-8017-fb4f7678769b Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:42.094407", "expires": - "2020-01-14T14:27:42Z", "id": "fd04197eaf0940e5aeb7a1f20441feec", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["uopPVkv_RDaLaFiYgDtpPQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:21:58.203650", "expires": + "2020-02-25T09:21:58Z", "id": "c5f264c5c91f4033aff6d00260e8f2c3", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["jmVlx69mTpmJ0vl_6gQndw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:42 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:58 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04//os-quota-sets/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484//os-quota-sets/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -4083,22 +4084,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37396785671c40e58453cb0c03853c62 + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-523ce640-6419-42e3-9edd-a460be9a10d8 + - req-341ef78a-152a-4c69-8868-5b806ee78bb9 Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-523ce640-6419-42e3-9edd-a460be9a10d8 + - req-341ef78a-152a-4c69-8868-5b806ee78bb9 Date: - - Tue, 14 Jan 2020 13:27:42 GMT + - Tue, 25 Feb 2020 08:21:59 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4106,12 +4107,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "2db86326708a44629d0a27103e6daa04"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:42 GMT + -1, "id": "4f018636e6414466b02641748cd91484"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:21:59 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693//os-quota-sets/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce//os-quota-sets/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -4123,22 +4124,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 53252c2371d84a87be0722e6e230a29f + - ec2678ac1d8d44fea8ed2f62db620f4e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7ecfb255-0dfe-40a7-8c97-9dd635a3d9f8 + - req-6a43f4d6-cc20-4e33-a6a4-e6d42b996a5f Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-7ecfb255-0dfe-40a7-8c97-9dd635a3d9f8 + - req-6a43f4d6-cc20-4e33-a6a4-e6d42b996a5f Date: - - Tue, 14 Jan 2020 13:27:42 GMT + - Tue, 25 Feb 2020 08:22:00 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4146,12 +4147,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "56ac37685be246aba905e0301d595693"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:42 GMT + -1, "id": "6152fef686644e46820e3d266fc8a5ce"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:00 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0//os-quota-sets/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33//os-quota-sets/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -4163,22 +4164,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - dd736c6e8b0145a98ab3c275c3e45a9c response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0c191bb3-bb8d-4915-a049-73167a2d1be6 + - req-3045a347-7b10-4c92-95bd-e687e5d0ed7a Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-0c191bb3-bb8d-4915-a049-73167a2d1be6 + - req-3045a347-7b10-4c92-95bd-e687e5d0ed7a Date: - - Tue, 14 Jan 2020 13:27:42 GMT + - Tue, 25 Feb 2020 08:22:01 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4186,12 +4187,12 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "66df12d5801449a2b529d3a1bbf279b0"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:42 GMT + -1, "id": "dadaba8276f24d6eb2526ffa43cd4e33"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:01 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e//os-quota-sets/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9//os-quota-sets/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -4203,22 +4204,22 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-ea649180-16df-4da7-afaf-62773a4cc6c3 + - req-849326ea-2c59-4404-95bf-c164679beb9b Content-Type: - application/json Content-Length: - '441' X-Openstack-Request-Id: - - req-ea649180-16df-4da7-afaf-62773a4cc6c3 + - req-849326ea-2c59-4404-95bf-c164679beb9b Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:02 GMT body: encoding: ASCII-8BIT string: '{"quota_set": {"per_volume_gigabytes": -1, "snapshots_iscsi": -1, "gigabytes": @@ -4226,9 +4227,9 @@ http_interactions: "snapshots_EmsRefreshSpec-VolumeType": -1, "snapshots": 10, "snapshots_random": -1, "volumes_iscsi": -1, "volumes": 10, "volumes_random": -1, "gigabytes_random": -1, "backups": 10, "volumes_EmsRefreshSpec-VolumeType": -1, "gigabytes_iscsi": - -1, "id": "8eb4b49207904f6eb33283732571bc0e"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + -1, "id": "e9bb9a5ed00244e0b3c288ed495abbf9"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:02 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4246,76 +4247,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:03 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-616ea4f7-a4e9-412e-a087-3f1368fb2719 + - req-9338d607-884d-42ad-b886-404fd47d2ac4 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:43.282363", "expires": - "2020-01-14T14:27:43Z", "id": "81f63b08d63046f58228be037a2046e3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["5wPx6I_eSwC_fZtGKhWBNQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:03.247315", "expires": + "2020-02-25T09:22:03Z", "id": "1a41525f25ab46ee96f4d477650e6c12", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["wyKLLkqkT_-QkyJV4knETw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:03 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4327,75 +4328,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:04 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9401a0a0-9baa-44f6-a5fe-302fa4683fcf + - req-6302fc81-dc23-41b5-aa5c-40fcb70cb02e Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:43.369975", "expires": - "2020-01-14T14:27:43Z", "id": "8c459e67d8df4655a28b8743fdd4e110", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["VaYzqByyRXOJ_yV-TvloMw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:04.301982", "expires": + "2020-02-25T09:22:04Z", "id": "9f988fd5d49f4bbb944978bef3904c4a", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["xoHUY7XrRY-Eksx9WRJ3Lw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:04 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -4407,69 +4408,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:05 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b1397663-32c4-41cf-a80d-c7071d0f3767 + - req-a6bd3d8e-6cff-49cd-81ea-69562db931ab Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:43.461128", "expires": - "2020-01-14T14:27:43Z", "id": "65b001b7712f4db498aad7e4aef5e264", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["L65DVYPvSiSmNlLAki_3PA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:05.478295", "expires": + "2020-02-25T09:22:05Z", "id": "aea75520c14b4ded9528e6b288772cfc", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["2IyYxmi9TP2RiPSEHCZaNA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:05 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4487,72 +4488,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:06 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-569369f4-6dd1-4cf9-b624-375d3a26c3ad + - req-8458e45d-6812-47f4-8905-9934cfb8cc44 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:43.554189", "expires": - "2020-01-14T14:27:43Z", "id": "c0158af74f3942d8a1f1da497a20f42c", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["qdSh_V1eSfqJdi7gyLWmvA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:06.444093", "expires": + "2020-02-25T09:22:06Z", "id": "7ec3c7ab7a24444c83e067effb2210dc", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["VSuPk0fjQwmp-k62E5Xazg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:06 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/2db86326708a44629d0a27103e6daa04 + uri: http://11.22.33.44:9696/v2.0//quotas/4f018636e6414466b02641748cd91484 body: encoding: US-ASCII string: '' @@ -4564,7 +4565,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8c459e67d8df4655a28b8743fdd4e110 + - 1a41525f25ab46ee96f4d477650e6c12 response: status: code: 200 @@ -4575,19 +4576,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-02c8e99d-1235-437e-b7f1-d1c1bb0ebf8d + - req-f29426cf-7f01-4323-83bd-73c88f45caee Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:07 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:07 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/56ac37685be246aba905e0301d595693 + uri: http://11.22.33.44:9696/v2.0//quotas/6152fef686644e46820e3d266fc8a5ce body: encoding: US-ASCII string: '' @@ -4599,7 +4600,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 65b001b7712f4db498aad7e4aef5e264 + - 9f988fd5d49f4bbb944978bef3904c4a response: status: code: 200 @@ -4610,19 +4611,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-e686b7ee-a018-4cb0-a3ae-3f21c6881d5c + - req-ca2fcfdc-4dfc-40e8-8ad0-64c6078e995b Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:08 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:08 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/66df12d5801449a2b529d3a1bbf279b0 + uri: http://11.22.33.44:9696/v2.0//quotas/dadaba8276f24d6eb2526ffa43cd4e33 body: encoding: US-ASCII string: '' @@ -4634,7 +4635,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 81f63b08d63046f58228be037a2046e3 + - aea75520c14b4ded9528e6b288772cfc response: status: code: 200 @@ -4645,19 +4646,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-56326891-ff1a-41bb-9910-a67b29117853 + - req-94df2b5a-8b93-4fbb-acf7-7db5d3489202 Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:09 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 10, "network": 10, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0//quotas/8eb4b49207904f6eb33283732571bc0e + uri: http://11.22.33.44:9696/v2.0//quotas/e9bb9a5ed00244e0b3c288ed495abbf9 body: encoding: US-ASCII string: '' @@ -4669,7 +4670,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c0158af74f3942d8a1f1da497a20f42c + - 7ec3c7ab7a24444c83e067effb2210dc response: status: code: 200 @@ -4680,19 +4681,19 @@ http_interactions: Content-Length: - '171' X-Openstack-Request-Id: - - req-993f159b-08ee-4f0a-bf38-8b0c252f62d3 + - req-4808938b-63b3-4b88-9e42-cf1a61717afd Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:10 GMT body: encoding: ASCII-8BIT string: '{"quota": {"subnet": 20, "network": 20, "floatingip": 50, "subnetpool": -1, "security_group_rule": 100, "security_group": 10, "router": 10, "rbac_policy": 10, "port": 50}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:11 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96/os-volume_attachments + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0/os-volume_attachments body: encoding: US-ASCII string: '' @@ -4704,7 +4705,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4717,18 +4718,18 @@ http_interactions: Content-Length: - '197' X-Compute-Request-Id: - - req-b0e02a00-b7b9-458a-95a1-becd436b1430 + - req-3b34a026-94f5-437d-864e-3a6bddd1c7c0 Date: - - Tue, 14 Jan 2020 13:27:43 GMT + - Tue, 25 Feb 2020 08:22:11 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e", "volumeId": "2042bbec-e245-405e-8e77-cde0205ab38e"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:43 GMT + string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "volumeId": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:12 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-volume_attachments + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-volume_attachments body: encoding: US-ASCII string: '' @@ -4740,7 +4741,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c47762d6ba8a45d8b7f5fd3a26283ea7 + - 9d5299bc447a460c96b9bbfb5b7b7a8e X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4753,17 +4754,17 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-36f8fce5-437c-4517-bd4c-20b6688e78d8 + - req-b4455524-5622-4b2d-a76f-28f93f9f32c9 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:13 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "volumeId": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"device": "/dev/vde", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "volumeId": "8da56634-38f0-4eb5-850c-4914089dc2ec"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "volumeId": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"device": "/dev/vde", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "volumeId": "fd763573-0660-40f7-a9af-99877e1ea6e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:13 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4781,70 +4782,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:14 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-921962ae-03ff-4e9a-bb09-29f08c8903aa + - req-f928561e-c210-4f6f-aab2-28aa97da6249 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:44.157632", "expires": - "2020-01-14T14:27:44Z", "id": "ab472e29e0174be3aaf85285dd79cc00", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["mrmDfshvSFqDVLKMBcFPGQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:14.598375", "expires": + "2020-02-25T09:22:14Z", "id": "b74bbfafcade41519806a2b14fc7daed", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["O0p3hPu9R368OBGF4eecmQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:14 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -4862,73 +4863,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:15 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0a692922-c7d0-475d-8fdc-5f6ed0d7ae50 + - req-dad5c5e5-58bf-4882-9f0e-acd88c3e3741 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:44.241711", "expires": - "2020-01-14T14:27:44Z", "id": "2d869699021d4501b57cfc5bada39898", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["fim_M7dvQP6eKxlff2aZ6Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:15.551769", "expires": + "2020-02-25T09:22:15Z", "id": "50ce747ebd83415b93f7a189d6a7608c", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["qdKx2LBTQLyg-7WHskWPrg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:15 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-aggregates + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-aggregates body: encoding: US-ASCII string: '' @@ -4940,7 +4941,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 04d0730be31e480d93af23fecff89c2c + - 5939cc90f3aa4919b85a6d1d5be987ee X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4953,17 +4954,17 @@ http_interactions: Content-Length: - '18' X-Compute-Request-Id: - - req-e39ea26f-d89c-4eb2-a585-7b6c941bc4e0 + - req-047eb88b-4c43-4445-a2f1-a76049e1963e Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:16 GMT body: encoding: ASCII-8BIT string: '{"aggregates": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:16 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -4975,30 +4976,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37396785671c40e58453cb0c03853c62 + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1a2738d0-153a-4e35-af34-d631e482675e + - req-b9cb810e-8aba-46a2-b153-26d45211579c Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-1a2738d0-153a-4e35-af34-d631e482675e + - req-b9cb810e-8aba-46a2-b153-26d45211579c Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:17 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:17 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5010,30 +5011,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 53252c2371d84a87be0722e6e230a29f + - ec2678ac1d8d44fea8ed2f62db620f4e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-bad347cd-048d-431a-9ced-481ad664579f + - req-2e8accf1-536e-4487-9430-34089bcd74f2 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-bad347cd-048d-431a-9ced-481ad664579f + - req-2e8accf1-536e-4487-9430-34089bcd74f2 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:18 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:18 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5045,30 +5046,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - dd736c6e8b0145a98ab3c275c3e45a9c response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7fd7ee32-d79a-4f61-aa8a-2895e3149753 + - req-b14f005f-e40a-41a2-8b0e-7c64b23abfa9 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-7fd7ee32-d79a-4f61-aa8a-2895e3149753 + - req-b14f005f-e40a-41a2-8b0e-7c64b23abfa9 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:20 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:20 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5080,70 +5081,70 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5027b4b0-666b-45aa-9363-68494b1e9034 + - req-ed006214-290a-4e81-84b8-4b5b85d72c62 Content-Type: - application/json Content-Length: - - '3734' + - '3716' X-Openstack-Request-Id: - - req-5027b4b0-666b-45aa-9363-68494b1e9034 + - req-ed006214-290a-4e81-84b8-4b5b85d72c62 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:20 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:21 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=258fcc18-5c61-4a59-83c4-92969abe6fb9&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=f97913d2-9211-4aed-a34c-e2efcccb1008&status=available body: encoding: US-ASCII string: '' @@ -5155,30 +5156,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c98b1f23-8124-47c4-92d6-f392ae371bf9 + - req-185b7bad-e099-49b4-8f1b-c0c364fb1e68 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-c98b1f23-8124-47c4-92d6-f392ae371bf9 + - req-185b7bad-e099-49b4-8f1b-c0c364fb1e68 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:21 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:21 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -5190,30 +5191,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37396785671c40e58453cb0c03853c62 + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-713becb9-094a-4b14-bad9-66293c437f77 + - req-ac2feda6-56f3-4d2d-b40e-b22ce5d7ed5d Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-713becb9-094a-4b14-bad9-66293c437f77 + - req-ac2feda6-56f3-4d2d-b40e-b22ce5d7ed5d Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:23 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:23 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5225,30 +5226,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37396785671c40e58453cb0c03853c62 + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-162ed588-781e-44b0-964d-3c712aae7dcc + - req-420aac27-dbf9-45cf-923f-2bd07a55109f Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-162ed588-781e-44b0-964d-3c712aae7dcc + - req-420aac27-dbf9-45cf-923f-2bd07a55109f Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:24 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:24 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail body: encoding: US-ASCII string: '' @@ -5260,30 +5261,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 53252c2371d84a87be0722e6e230a29f + - ec2678ac1d8d44fea8ed2f62db620f4e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-422c3f41-73a9-4c83-b16d-678d93afd903 + - req-6ab9f927-42d8-467f-9de1-9a832613ff56 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-422c3f41-73a9-4c83-b16d-678d93afd903 + - req-6ab9f927-42d8-467f-9de1-9a832613ff56 Date: - - Tue, 14 Jan 2020 13:27:44 GMT + - Tue, 25 Feb 2020 08:22:25 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:44 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:25 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5295,30 +5296,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 53252c2371d84a87be0722e6e230a29f + - ec2678ac1d8d44fea8ed2f62db620f4e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-bb79a30c-c84b-41ad-bd82-ae5daa760664 + - req-5c5b5d71-bc76-450d-b633-a85542bca8fa Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-bb79a30c-c84b-41ad-bd82-ae5daa760664 + - req-5c5b5d71-bc76-450d-b633-a85542bca8fa Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:26 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:26 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail body: encoding: US-ASCII string: '' @@ -5330,30 +5331,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - dd736c6e8b0145a98ab3c275c3e45a9c response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b9291ec2-88f9-40d1-b9a3-0c74967a345a + - req-9d8e96e6-b628-47f1-8110-00d6f1b6e541 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-b9291ec2-88f9-40d1-b9a3-0c74967a345a + - req-9d8e96e6-b628-47f1-8110-00d6f1b6e541 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:27 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:27 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5365,30 +5366,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - dd736c6e8b0145a98ab3c275c3e45a9c response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c7a75950-34e5-4921-b03f-7624220a2f17 + - req-31847b4c-0a53-47f4-a593-c6d8aa95d4be Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-c7a75950-34e5-4921-b03f-7624220a2f17 + - req-31847b4c-0a53-47f4-a593-c6d8aa95d4be Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:28 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:28 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail body: encoding: US-ASCII string: '' @@ -5400,44 +5401,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7bb7c14a-97bc-4490-bd48-b32f39ab5c2f + - req-62bc7c33-12a0-43b1-9d3e-1ff5b2809295 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-7bb7c14a-97bc-4490-bd48-b32f39ab5c2f + - req-62bc7c33-12a0-43b1-9d3e-1ff5b2809295 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:29 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:29 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail?limit=1000&status=available + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail?limit=1000&status=available body: encoding: US-ASCII string: '' @@ -5449,44 +5450,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-405c0b2d-b9af-4bd0-acff-88f0603ea1ae + - req-5c47d66e-92bd-40fa-b0a3-714bd42a31a6 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-405c0b2d-b9af-4bd0-acff-88f0603ea1ae + - req-5c47d66e-92bd-40fa-b0a3-714bd42a31a6 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:30 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:30 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5498,30 +5499,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37396785671c40e58453cb0c03853c62 + - 6e4fe364cc914e448bc12cf6d6f85d1e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-87195d31-6cd4-406c-80ef-36a71b85fdf6 + - req-07da1750-dccc-4f6d-96a9-50e681085dec Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-87195d31-6cd4-406c-80ef-36a71b85fdf6 + - req-07da1750-dccc-4f6d-96a9-50e681085dec Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:31 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:31 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5533,30 +5534,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 53252c2371d84a87be0722e6e230a29f + - ec2678ac1d8d44fea8ed2f62db620f4e response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-86cdbde9-9172-4708-a953-3fd259de8a06 + - req-c42e537a-08e4-4944-974f-39ee6f08d994 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-86cdbde9-9172-4708-a953-3fd259de8a06 + - req-c42e537a-08e4-4944-974f-39ee6f08d994 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:32 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:32 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5568,30 +5569,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c551a06db05f4ae8870921458363a57b + - dd736c6e8b0145a98ab3c275c3e45a9c response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-b4d1e1dd-446c-40f7-81be-a503eca900eb + - req-80b9644c-a956-4c8b-b6ce-b3aa60073463 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-b4d1e1dd-446c-40f7-81be-a503eca900eb + - req-80b9644c-a956-4c8b-b6ce-b3aa60073463 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:32 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:33 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -5603,120 +5604,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0851537c-e563-493c-8bd9-dd44bb2ab5dd + - req-abc492f0-4443-47c4-aed6-833fbcd83653 Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-0851537c-e563-493c-8bd9-dd44bb2ab5dd + - req-abc492f0-4443-47c4-aed6-833fbcd83653 Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:33 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:34 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -5728,27 +5729,27 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fd04197eaf0940e5aeb7a1f20441feec + - c5f264c5c91f4033aff6d00260e8f2c3 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6d40ba04-d112-4e68-a31d-b543d449c213 + - req-3461e184-7195-49d7-bdeb-c8e3a1abb71b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-6d40ba04-d112-4e68-a31d-b543d449c213 + - req-3461e184-7195-49d7-bdeb-c8e3a1abb71b Date: - - Tue, 14 Jan 2020 13:27:45 GMT + - Tue, 25 Feb 2020 08:22:34 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:45 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:34 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -5766,70 +5767,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:46 GMT + - Tue, 25 Feb 2020 08:22:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-af34940f-0c0a-445c-94d7-5027f177278c + - req-82c68c60-c17d-4314-8169-dc60c2d49406 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:46.538891", "expires": - "2020-01-14T14:27:46Z", "id": "9eba5f9786524b36a4465ad4c0ffaf45", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["BByv7aR3RFGM3J_oaHtFrA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:36.307091", "expires": + "2020-02-25T09:22:36Z", "id": "d1b87d2a29fe4951bdfc307955a73bdd", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["dVTtaIGnSReSUt3KqEUPlQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:46 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:36 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -5847,70 +5848,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:46 GMT + - Tue, 25 Feb 2020 08:22:37 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b90683d9-e961-425a-8119-bdd798e30a0d + - req-9451b060-241d-48c0-aa32-54c9906ebf4c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:46.627541", "expires": - "2020-01-14T14:27:46Z", "id": "d01c74b61e7e4742843ebe91034ab110", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["h42zY5s7THKlKy-PngLerg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:37.358558", "expires": + "2020-02-25T09:22:37Z", "id": "6c132fa471a04d218667348202451128", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["DWaLh56BQImr6B02FaCrpQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:46 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:37 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/networks @@ -5925,7 +5926,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -5936,79 +5937,79 @@ http_interactions: Content-Length: - '5330' X-Openstack-Request-Id: - - req-5cc34d9b-beca-4469-9a98-8fe167c701ef + - req-a04b10e4-e8ca-4215-a3c7-b60067b521e6 Date: - - Tue, 14 Jan 2020 13:27:46 GMT + - Tue, 25 Feb 2020 08:22:38 GMT body: encoding: ASCII-8BIT - string: '{"networks": [{"status": "ACTIVE", "subnets": ["159bd606-50a7-4e16-932a-4ae80ed58efc"], - "name": "EmsRefreshSpec-NetworkPublic_40", "provider:physical_network": "public_net_4", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["8ca156a0-7ec2-4981-96c6-6499214413cf", - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"networks": [{"status": "ACTIVE", "subnets": ["b203d38f-01ad-48a3-84fa-0490239b0995", + "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2"], "name": "EmsRefreshSpec-NetworkPublic_50", + "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": + false, "provider:network_type": "flat", "id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["a5e56f5e-f3cf-4224-aaba-71792b317537"], + "name": "EmsRefreshSpec-IsolatedNetworkPrivate_1", "provider:physical_network": + null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mtu": 0, "router:external": false, "shared": false, "provider:network_type": + "vxlan", "id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "provider:segmentation_id": + 98}, {"status": "ACTIVE", "subnets": ["fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47"], "name": "EmsRefreshSpec-IsolatedNetworkPrivate_2", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "678bb925-5f9c-4718-874c-ac592109544c", "provider:segmentation_id": - 82}, {"status": "ACTIVE", "subnets": ["544ac21e-718b-425a-8fe9-2a3f19cdeb1d"], + "vxlan", "id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "provider:segmentation_id": + 59}, {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], + "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": true, "shared": false, "provider:network_type": "flat", + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["a6f12ba3-3567-400f-a9ce-6bb4e135f1f3"], + "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", + "id": "873c1069-e420-4178-a77c-99fc2c905605", "provider:segmentation_id": + 13}, {"status": "ACTIVE", "subnets": ["063860da-16bf-4e80-9e03-8ba23bb78303"], "name": "EmsRefreshSpec-NetworkPrivate_20", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", "provider:segmentation_id": - 99}, {"status": "ACTIVE", "subnets": ["c9a2a941-2b1a-406e-9d91-fe9a9864b993"], - "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "provider:segmentation_id": + 24}, {"status": "ACTIVE", "subnets": ["f0ba8818-dc0d-4683-9af5-e1c83e92df5f", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8"], "name": "EmsRefreshSpec-NetworkPrivate_30", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mtu": 0, "router:external": false, "shared": false, "provider:network_type": + "vxlan", "id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "provider:segmentation_id": + 86}, {"status": "ACTIVE", "subnets": ["5d12d78d-20e2-4240-845f-cb2bb1b5c51a"], + "name": "EmsRefreshSpec-NetworkPublic_40", "provider:physical_network": "public_net_4", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "50426539-7226-4a52-895a-dd8af97779d9", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["668a8b0d-7300-48e1-be97-db0174c341e2", - "201313ab-c7f4-41bf-8aea-56fdeececfc9"], "name": "EmsRefreshSpec-NetworkPublic_50", - "provider:physical_network": "public_net_5", "admin_state_up": true, "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mtu": 0, "router:external": true, "shared": - false, "provider:network_type": "flat", "id": "9fbb4ac7-7db3-486b-8524-340b65175c40", - "provider:segmentation_id": null}, {"status": "ACTIVE", "subnets": ["96f0bd23-c9f1-4e58-811a-5da42a552272"], + "id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["12ec8daa-a53e-4da1-b1cd-659e80cb7584"], "name": "EmsRefreshSpec-NetworkPublic_10", "provider:physical_network": "public_net_1", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "402c76d3-c791-4401-8112-57c026e4c1ee", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["e584057e-f15d-4038-82d2-b5ec77234adc"], + "id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["dd0f4830-f0e0-49f8-a041-dc7ce7abaa78"], "name": "EmsRefreshSpec-NetworkPrivate_3", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "provider:segmentation_id": - 75}, {"status": "ACTIVE", "subnets": ["9b51a47a-9ec4-4725-a1bc-7b3165d5375e"], - "name": "EmsRefreshSpec-IsolatedNetworkPrivate_1", "provider:physical_network": - null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "provider:segmentation_id": - 68}, {"status": "ACTIVE", "subnets": ["6b1dade5-4d5e-4ccc-ae57-0ca3222a443c"], - "name": "EmsRefreshSpec-NetworkPrivate_2", "provider:physical_network": null, - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": "vxlan", - "id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "provider:segmentation_id": - 46}, {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], - "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": - 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["d0de16b8-ead6-4b12-b206-9488d1af8d74", - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4"], "name": "EmsRefreshSpec-NetworkPrivate_30", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "provider:segmentation_id": - 97}, {"status": "ACTIVE", "subnets": ["a51f963b-93a5-4892-a9d5-21a32b2e7941"], + "id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "provider:segmentation_id": + 15}, {"status": "ACTIVE", "subnets": ["273e0170-431e-4f44-a266-7c4d3683ffe8"], "name": "EmsRefreshSpec-NetworkPublic_20", "provider:physical_network": "public_net_2", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": + 0, "router:external": true, "shared": false, "provider:network_type": "flat", + "id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["8b258afd-ddbb-410e-af5f-c8b6f087f782"], + "name": "EmsRefreshSpec-NetworkPublic_30", "provider:physical_network": "public_net_3", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "provider:segmentation_id": - null}, {"status": "ACTIVE", "subnets": ["be64e82a-7735-4ae3-a390-b0fb6441c184", - "aa3be045-833a-4a11-9c63-3d9fc3ee0322"], "name": "EmsRefreshSpec-NetworkPrivate", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "provider:segmentation_id": + null}, {"status": "ACTIVE", "subnets": ["884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "28f725f2-026f-4647-8b74-2048baac2063"], "name": "EmsRefreshSpec-NetworkPrivate", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "provider:segmentation_id": - 76}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:46 GMT + "vxlan", "id": "fe1373d6-962e-4439-8782-5997d874ca98", "provider:segmentation_id": + 82}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:38 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6026,70 +6027,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:46 GMT + - Tue, 25 Feb 2020 08:22:39 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8126f159-4731-417d-8523-2f04eb3be850 + - req-85942ad8-bc6a-4a47-8ef8-1dcde0819fe8 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:46.895368", "expires": - "2020-01-14T14:27:46Z", "id": "23c6803124ca4bac8edd05f4fd8c2bf6", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["hZAM7uBMT92NfRNDTBEcgw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:39.387286", "expires": + "2020-02-25T09:22:39Z", "id": "140d88c61e924081b611d80fa648f1eb", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["mExtIUTsS0e2tvTHTqJZeg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:46 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:39 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6107,13 +6108,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:46 GMT + - Tue, 25 Feb 2020 08:22:40 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a4c734ee-1113-4f29-a488-26490d2d1d88 + - req-4f4c2d16-6a5c-486c-b87f-bafa879307f9 Content-Length: - '370' Connection: @@ -6122,13 +6123,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:47.011646", "expires": - "2020-01-14T14:27:47Z", "id": "b49a8d67284b42d58a3a89d41234206a", "audit_ids": - ["hPvFGlxCTDWm9SXin29MiA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:40.593990", "expires": + "2020-02-25T09:22:40Z", "id": "b83f71172b004269be9b6cd2d6400791", "audit_ids": + ["2GEJdCZYRs6N_AW15voZ2w"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:40 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -6143,20 +6144,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b49a8d67284b42d58a3a89d41234206a + - b83f71172b004269be9b6cd2d6400791 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3f840720-1802-4eb1-80fe-8362e07f4eb3 + - req-3176c8b8-a23b-4cf3-8288-a09c6b26855f Content-Length: - '500' Connection: @@ -6165,20 +6166,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:42 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6190,75 +6191,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-713a1e69-5cda-451b-b494-ba6c86471001 + - req-1130138f-4d19-4a55-9155-a460c9cede36 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:47.131226", "expires": - "2020-01-14T14:27:47Z", "id": "2ce49d52fbb24003b5ab3ab796b69491", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["IYlXN_RYQYWmPzUiLUI7gQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:42.980326", "expires": + "2020-02-25T09:22:42Z", "id": "56201b61eacd42a7a825c743d345d659", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["oXNqw9jsQOCs9joRp6GyBw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:43 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6270,69 +6271,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:44 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f19682d5-103c-4ac3-9e2f-839a13593e31 + - req-89a09c62-31c3-4716-af96-0097c67c0ee2 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:47.218207", "expires": - "2020-01-14T14:27:47Z", "id": "279cafadcd3548a7b89b21fb1a6ad7f9", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["CxPDDROfSbOKD0XPebDtzg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:44.114000", "expires": + "2020-02-25T09:22:44Z", "id": "79af9de9d2a34d1eb650ec3ffd9033bc", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["Gf-oXiXSTMq0DGXZif2NMQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:44 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -6350,72 +6351,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:45 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a7bb6723-3fac-4520-ad2a-a4732ccb10a0 + - req-6d382847-3091-4e2f-ba5b-eada9c408659 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:47.303202", "expires": - "2020-01-14T14:27:47Z", "id": "645709676fe942ae8bdeffea03343e9d", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["ssKPFwiAQIab9Pm34E2xvg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:45.424523", "expires": + "2020-02-25T09:22:45Z", "id": "19eb7d1d48e84cb68d4688226fd2f245", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["JG0gfN29RHKpiP1C4iQwpQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:45 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6427,7 +6428,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2ce49d52fbb24003b5ab3ab796b69491 + - 140d88c61e924081b611d80fa648f1eb response: status: code: 200 @@ -6438,17 +6439,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-bcbcc828-073b-4e49-a643-f4cee1b4782c + - req-da78a399-0145-45f8-807f-7abfe2f7a285 Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:47 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:47 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6460,7 +6461,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 279cafadcd3548a7b89b21fb1a6ad7f9 + - 56201b61eacd42a7a825c743d345d659 response: status: code: 200 @@ -6471,17 +6472,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-c759cf7f-d0de-4af3-b69d-be9d8db643b9 + - req-97b0786c-d71c-46aa-89ec-7a85e7369a93 Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:48 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:49 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6493,7 +6494,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 23c6803124ca4bac8edd05f4fd8c2bf6 + - 79af9de9d2a34d1eb650ec3ffd9033bc response: status: code: 200 @@ -6504,17 +6505,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-0d46ef45-55e9-4e7d-b706-98dc6c21f32f + - req-ac9ab33f-cc2a-4f1d-9fac-2b7ec2e21805 Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:50 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:50 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -6526,7 +6527,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6535,11 +6536,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-b08bfb6a-cf62-43e7-b9e0-2c54fd5a61fd + - req-fe3de592-ae1f-4987-b590-a55d1912f7e0 Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:51 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -6548,35 +6549,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:51 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -6588,7 +6589,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6599,17 +6600,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-65d2b9be-145e-48cf-9714-4790eb407ec7 + - req-2bd28c71-8fa7-42cf-9e43-f0760b4afe38 Date: - - Tue, 14 Jan 2020 13:27:47 GMT + - Tue, 25 Feb 2020 08:22:52 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:47 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:52 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -6621,7 +6622,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6630,11 +6631,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-740e1470-9c40-44c7-bdc1-be58c5e60f31 + - req-0795342a-b240-44fe-8c0e-04e6c223ee0a Date: - - Tue, 14 Jan 2020 13:27:48 GMT + - Tue, 25 Feb 2020 08:22:53 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6643,28 +6644,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:48 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:54 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -6676,7 +6677,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6685,11 +6686,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-cc23d82b-d20a-4cf1-8293-bf5282036eab + - req-616f7d02-61ae-49f1-8295-f05814f211b3 Date: - - Tue, 14 Jan 2020 13:27:48 GMT + - Tue, 25 Feb 2020 08:22:55 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6698,28 +6699,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:48 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:55 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -6731,7 +6732,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6740,11 +6741,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-476853dd-9300-44b4-b45f-6ad4661968e6 + - req-b456c88f-5909-449c-a938-51c3e74dd156 Date: - - Tue, 14 Jan 2020 13:27:48 GMT + - Tue, 25 Feb 2020 08:22:56 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -6753,28 +6754,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:48 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:56 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources body: encoding: US-ASCII string: '' @@ -6786,7 +6787,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6795,26 +6796,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-758bca4e-180b-47d9-95ba-5b051c816926 + - req-2cf77b76-0617-42e8-a66f-76b69b32c77b Date: - - Tue, 14 Jan 2020 13:27:48 GMT + - Tue, 25 Feb 2020 08:22:57 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:18", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:18", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", + "2020-02-24T12:09:33", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:33", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:48 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:57 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources body: encoding: US-ASCII string: '' @@ -6826,7 +6827,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6835,26 +6836,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-5e804285-edef-4f9a-802d-6d3f3bcd5962 + - req-80ee0534-f135-48ba-8b35-f64016c7acb5 Date: - - Tue, 14 Jan 2020 13:27:48 GMT + - Tue, 25 Feb 2020 08:22:58 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:16", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:16", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "31b66a4b-0971-4a6e-a171-3da45ea56100", + "2020-02-24T12:09:31", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:31", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:48 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:58 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -6866,7 +6867,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 645709676fe942ae8bdeffea03343e9d + - 19eb7d1d48e84cb68d4688226fd2f245 response: status: code: 200 @@ -6875,29 +6876,29 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-f9073ea2-281d-499b-b555-41b5c7f386fa + - req-e19e00bd-f745-4730-90b4-0755c78756b3 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:22:58 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:59 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6909,75 +6910,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:22:59 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-5bfd0640-f71c-41ff-a5a7-2e16c9ce41ed + - req-02a98074-fb70-47d9-8b87-0da6c17ecc5c Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:49.097424", "expires": - "2020-01-14T14:27:49Z", "id": "5143ee851911420b975f07e6ca56fc85", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["im2Bf3boQtG2AH3ukW0UNA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:22:59.630128", "expires": + "2020-02-25T09:22:59Z", "id": "313da7db9aff45d48be6dc572faeafd8", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["zlDsLDkeQnOYHpKo7MrAvg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:22:59 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -6989,69 +6990,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:00 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2b7704b3-cab6-4d5b-afab-9f14c338f628 + - req-20ea134f-3a9d-4769-b75e-f564514e59b6 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:49.183837", "expires": - "2020-01-14T14:27:49Z", "id": "136d63e81001467284df3c988e7c121d", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["htgAKB5JTDSuSYPhCGb7OQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:23:00.960463", "expires": + "2020-02-25T09:23:00Z", "id": "0afc5f05affb45bf9be94e9a1ebb91aa", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["v0wCsC4NQ0GNfVoA76NyZw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:01 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -7069,69 +7070,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:01 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-75a3d246-fdef-4fcc-8574-002cb83535a5 + - req-24a5711b-2074-456b-8fdd-48c7330f4ef3 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:49.275871", "expires": - "2020-01-14T14:27:49Z", "id": "5d5ef20b31f74d51a16dcb762cbaab90", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["LU3kce1-QzuQcpbuJtd8aQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:23:01.908505", "expires": + "2020-02-25T09:23:01Z", "id": "f562b0542b264325a1d5c5a91fbeb6b1", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["xIz-U6jPSQOHZGKiAyDJSw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:02 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -7146,7 +7147,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -7157,115 +7158,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-7ab5ac13-5ef8-45da-9fe4-93c0ead0b878 + - req-fe0ff5e7-17cd-416b-b16f-8a47d19f0a92 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:03 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:03 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7277,7 +7279,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -7288,115 +7290,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-7bafa6ba-51cb-4bd0-b6b3-49fb77899fd6 + - req-72728bdd-e978-457a-bffc-7df7eb900844 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:04 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:04 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -7408,7 +7410,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -7419,115 +7421,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-00446541-7c59-44b9-a24a-abb41abd6a00 + - req-f8d37ed9-e521-489f-b66a-a58f46fd1158 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:05 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:06 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7539,7 +7542,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -7550,113 +7553,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-fbab1995-0325-4b23-abce-d450d49ebd4a + - req-ad8a9e53-0491-46d6-b73b-93a200b80c77 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:06 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:07 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -7671,7 +7674,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -7682,116 +7685,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-e1a7af54-77fd-4232-bd7b-d7aa4c84fb3e + - req-7e5edbf2-c610-4470-b3fe-825e571f8b49 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:07 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:08 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=be64e82a-7735-4ae3-a390-b0fb6441c184 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -7803,7 +7806,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -7814,113 +7817,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-4b7eef00-1b4e-437e-a317-9cee64b90f77 + - req-a6d9b501-ce56-4248-8ad6-a7bab709e1a4 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:09 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:09 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -7935,7 +7938,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -7946,116 +7949,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-d9093bcd-8e78-4461-9b6b-6aab2a8693fb + - req-d9581153-1e1d-401b-9dab-2e6eb7015c40 Date: - - Tue, 14 Jan 2020 13:27:49 GMT + - Tue, 25 Feb 2020 08:23:10 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:49 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:11 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=be64e82a-7735-4ae3-a390-b0fb6441c184 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -8067,7 +8069,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -8078,116 +8080,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-2fba9953-43b2-4cb2-be2c-a099b3de7ab0 + - req-4dfd28f1-753f-4765-9223-386c99a618ec Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:12 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:12 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -8199,7 +8201,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -8208,57 +8210,118 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '8299' X-Openstack-Request-Id: - - req-65c53981-253c-4eeb-bd57-efca2552f904 + - req-5ecbb5eb-e1d1-4748-8cd5-b414003fa91a Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:13 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": + "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:14 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -8270,7 +8333,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -8279,54 +8342,378 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '8299' X-Openstack-Request-Id: - - req-1d8c2445-5be5-4817-9369-0a546b4d7746 + - req-599e2ad4-dd43-4d28-8c47-39aee40afe02 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:14 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:15 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - f562b0542b264325a1d5c5a91fbeb6b1 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-837688b1-36d3-42d6-8e32-0919c1ef44d3 + Date: + - Tue, 25 Feb 2020 08:23:16 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:16 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - f562b0542b264325a1d5c5a91fbeb6b1 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-06b9da90-11db-455f-871b-418478568bc9 + Date: + - Tue, 25 Feb 2020 08:23:17 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:17 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8341,7 +8728,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -8350,57 +8737,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-b0ff1063-2192-4a50-b498-5fb8f8cdb108 + - req-929e7211-44fe-4cab-9953-c53788a45e35 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:18 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:18 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8412,7 +8797,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -8421,54 +8806,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-55c3a807-0762-4b42-9044-c5a3ed221117 + - req-4b671db4-f8fc-4777-bad7-579eeb5bd988 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:19 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:19 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8483,7 +8866,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -8492,57 +8875,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-7cdd4d8e-db04-4ca7-b682-d74feabbc3f6 + - req-54675329-0117-46de-a8b2-7471cb953571 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:20 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:20 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8554,7 +8935,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -8563,54 +8944,52 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-ccd70e3d-2691-4964-93f1-6ec7e070f034 + - req-f74b4d69-72b7-40d8-b6a1-352fccb42d3b Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:20 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:21 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 @@ -8625,7 +9004,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -8634,57 +9013,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-c9fc87e1-e1f6-4913-8db4-e7eeba635563 + - req-169903db-8e7f-4f20-a1a8-0b2caf45177e Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:21 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:21 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=dbe11330-3173-4c88-a33c-6bf8b9483ea2 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 body: encoding: US-ASCII string: '' @@ -8696,7 +9073,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -8705,57 +9082,55 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '3276' + - '3275' X-Openstack-Request-Id: - - req-1eef21a8-0207-425f-8669-cf546a1d686b + - req-f8acd765-bcdd-4b61-9f5c-cc5757186205 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:22 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.10", - "floating_ip_address": "172.16.17.9", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "id": - "0a47a5fc-9918-41f3-804f-2297c497595a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.14", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "0fd8ddad-ce60-415e-920e-e624c44a3275"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.7", - "floating_ip_address": "172.16.17.6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "e0334a76-d0fa-4336-bad9-7cf9b659c259", "id": - "229ea239-7fc6-4a22-a90f-f37936e41837"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", "fixed_ip_address": "192.168.3.9", - "floating_ip_address": "172.16.17.5", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "id": - "5b24c193-5913-4784-bbfa-c58573d18d84"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.9", - "floating_ip_address": "172.16.17.8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "id": - "67818fb7-ac48-45b4-a898-c06e020c0c08"}, {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "status": "DOWN", "port_id": - null, "id": "6cbaedb4-e091-4f27-843b-39c2e3ac3372"}, {"floating_network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": null, "fixed_ip_address": - null, "floating_ip_address": "172.16.17.12", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "DOWN", "port_id": null, "id": "a0fc919c-7960-484a-956a-6eccf83ae6e4"}, - {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "router_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.8", - "floating_ip_address": "172.16.17.7", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "05bb11a8-5072-42e7-81b8-bdda5940500f", "id": - "dbe11330-3173-4c88-a33c-6bf8b9483ea2"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:22 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000 body: encoding: US-ASCII string: '' @@ -8767,7 +9142,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -8776,413 +9151,555 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '3275' X-Openstack-Request-Id: - - req-8cb5202b-7bb5-44ef-aa89-6e8f73f2aae5 + - req-49d46837-7f75-407f-8b9c-1a456386b0eb Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:23 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:23 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/floatingips?limit=1000&marker=df48bf55-346d-4bcc-8c14-a5593882adb0 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - f562b0542b264325a1d5c5a91fbeb6b1 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '3275' + X-Openstack-Request-Id: + - req-7bb74d43-1b61-4eb8-ab11-7722eb124755 + Date: + - Tue, 25 Feb 2020 08:23:24 GMT + body: + encoding: ASCII-8BIT + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "fixed_ip_address": "192.168.3.9", + "floating_ip_address": "172.16.17.5", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "id": + "15bfb907-390d-4ccf-8bf4-505110702897"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.13", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.7", "floating_ip_address": "172.16.17.9", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "1a36c285-7a9f-4665-938d-6cb1b76e65bc", + "id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.12", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "3c1ea8cd-5506-406e-a074-aada66802c5c"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.6", "floating_ip_address": "172.16.17.8", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "b1cc5d06-a048-44d5-9663-8ef28b936c89", + "id": "424ec388-8cfa-4527-aa92-fac0ff49d84c"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.5", + "floating_ip_address": "172.16.17.7", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "id": + "66d3a536-8474-43a9-a456-aa4c70c139e5"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.14", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "91e65261-f328-41a1-a593-5606c1deeaf3"}, {"floating_network_id": + "9e975de8-88ba-483b-9152-caa1ae01d111", "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", + "fixed_ip_address": "192.168.1.4", "floating_ip_address": "172.16.17.6", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "ACTIVE", "port_id": "04439a32-2c8b-495d-8ca2-aabfffca56ba", + "id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9"}, {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": null, "fixed_ip_address": null, "floating_ip_address": "172.16.17.11", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "status": "DOWN", "port_id": + null, "id": "df48bf55-346d-4bcc-8c14-a5593882adb0"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:24 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6c132fa471a04d218667348202451128 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '33147' + X-Openstack-Request-Id: + - req-8230b37a-4e24-4500-a6c7-5460a732fce2 + Date: + - Tue, 25 Feb 2020 08:23:24 GMT + body: + encoding: ASCII-8BIT + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:25 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -9194,7 +9711,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -9203,410 +9720,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-5a55d73f-f340-485b-92ee-390b828825b5 + - req-505153e7-652f-4df3-8aa5-075a11402c28 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:26 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", + "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", - "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:27 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -9621,7 +10142,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -9630,413 +10151,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-dc350041-a575-44e2-9240-307adb359980 + - req-2a128ae9-9aaf-4299-aafb-c597859c0b53 Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:28 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:28 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -10048,7 +10573,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -10057,410 +10582,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-6e7d8945-271c-4ab1-8fb1-04c2359687e4 + - req-099e7907-40e1-405e-a611-9a14642fef2b Date: - - Tue, 14 Jan 2020 13:27:50 GMT + - Tue, 25 Feb 2020 08:23:29 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:50 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:30 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -10475,7 +11004,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -10484,413 +11013,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-05a33cdc-d1a6-4e69-9266-e7abdc60798d + - req-6c9a3a58-c630-49d2-b169-5f6abc26a202 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:31 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:32 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -10902,7 +11435,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -10911,410 +11444,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-49c82114-da69-44ce-bf80-b6f3c17d3379 + - req-48088a06-c375-44e7-b264-1e94856ac530 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:32 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:33 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/ports?limit=1000 @@ -11329,7 +11866,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -11338,413 +11875,417 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-aaa2ae62-336a-481f-95f7-321c85c2e74a + - req-c585292d-f098-4360-b1e1-eff95eae9d97 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:34 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:34 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=f041a578-93c8-436b-8281-9937e9f572d6 + uri: http://11.22.33.44:9696/v2.0/ports?limit=1000&marker=fbaea754-34a3-46ae-9b29-280628987e4e body: encoding: US-ASCII string: '' @@ -11756,7 +12297,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -11765,410 +12306,414 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '32871' + - '33147' X-Openstack-Request-Id: - - req-d3cc5c9e-7594-4f59-84d7-7ea0658cbf82 + - req-a844bf62-bd6a-4ce1-b779-a46c849eaa21 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:35 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-2", "ip_address": "192.168.30.2", - "fqdn": "host-192-168-30-2.openstacklocal."}, {"hostname": "host-192-168-31-2", - "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "ip_address": "192.168.30.2"}, {"subnet_id": - "d0de16b8-ead6-4b12-b206-9488d1af8d74", "ip_address": "192.168.31.2"}], "id": - "0141c46f-66ea-4b05-a69d-8e047e001484", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-e1e0e7ec-b76d-45de-a364-3973d92f94de", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f0:3a:85"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-10", - "ip_address": "192.168.1.10", "fqdn": "host-192-168-1-10.openstacklocal."}], + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.10"}], "id": - "02f3189e-a66b-477d-95b1-6f66dcc9e7ae", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "6bda6c84-4790-4418-95eb-75258de017fd", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d8:67:cd"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-8", - "ip_address": "192.168.1.8", "fqdn": "host-192-168-1-8.openstacklocal."}], + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-20-2", + "ip_address": "172.16.20.2", "fqdn": "host-172-16-20-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}], + "id": "09310c12-681a-4f0d-b01d-ede1ea9530f6", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7b:94:9f"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-5", "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.8"}], "id": - "05bb11a8-5072-42e7-81b8-bdda5940500f", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "cadd8a5b-232c-4af8-859d-77c939e25b49", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.5"}], "id": + "0dc64bdb-3e17-4fc3-b6a0-60ba9ab562c8", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "22d91d55-8a1d-4a17-a1e8-27d80d79d15e", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:58:6b:1a"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.12"}], - "id": "1ea159a9-e464-443d-9c00-cd66fd2c87eb", "security_groups": [], "device_id": - "a0fc919c-7960-484a-956a-6eccf83ae6e4", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:fd:80:5a"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-6", "ip_address": "192.168.1.6", - "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.6"}], "id": "25de95c7-2449-48f8-b513-54bacf26fdd1", - "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:49:fa:22"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-4", + "ip_address": "192.168.0.4", "fqdn": "host-192-168-0-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.4"}], "id": + "0f538de6-9ec3-4d71-9a22-f7dfcef41a04", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "7b746476-46b4-4edb-aee4-69f5c78407ae", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:6c:e7:30"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", "fqdn": "host-172-16-17-9.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.9"}], - "id": "2a6b1ed5-1899-4d58-a615-c233bd1c53d5", "security_groups": [], "device_id": - "0a47a5fc-9918-41f3-804f-2297c497595a", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:0a:1c:03"}, {"status": "N/A", "binding:host_id": - "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", "fqdn": "host-172-16-17-5.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.5"}], - "id": "3126b4c8-803b-4988-b14c-edcf6322390e", "security_groups": [], "device_id": - "5b24c193-5913-4784-bbfa-c58573d18d84", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:31:26:3f"}, {"status": "N/A", "binding:host_id": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:9c:8d:f3"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": - [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", "fqdn": "host-172-16-17-13.openstacklocal."}], + [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.13"}], - "id": "344aa69a-16e0-4a60-bfb0-edce90512ed7", "security_groups": [], "device_id": - "6cbaedb4-e091-4f27-843b-39c2e3ac3372", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.14"}], + "id": "0fd4ac19-57ff-4a36-80ea-6bcdcb02b035", "security_groups": [], "device_id": + "91e65261-f328-41a1-a593-5606c1deeaf3", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:38:55:c7"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-8", "ip_address": "192.168.3.8", - "fqdn": "host-192-168-3-8.openstacklocal."}], "device_owner": "network:dhcp", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.8"}], "id": "348ff093-9a61-4940-b2be-3b9a50211591", - "security_groups": [], "device_id": "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-f98ccbcc-781f-4890-8155-a8d1ab24d5ba", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "", "mac_address": "fa:16:3e:4e:9b:1c"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-2", + "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.2"}], "id": + "12cee6b7-4fde-4801-b65d-02b466acd78c", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-873c1069-e420-4178-a77c-99fc2c905605", + "name": "", "admin_state_up": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:37:2c:80"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", - "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.11"}], "id": "39a3b517-356e-4900-b46b-6c9c7cef24cc", - "security_groups": [], "device_id": "0fd83d5f-a7c4-4584-8144-fcfdd451f71e", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:08:c4:4e"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ce:94:9c"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-7", "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.7"}], "id": + "1a36c285-7a9f-4665-938d-6cb1b76e65bc", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "00fd0062-3e72-4556-ae3c-e146cd0beb68", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:44:a8:cf"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-2-2", "ip_address": "192.168.2.2", "fqdn": "host-192-168-2-2.openstacklocal."}], + "host-192-168-30-2", "ip_address": "192.168.30.2", "fqdn": "host-192-168-30-2.openstacklocal."}, + {"hostname": "host-192-168-31-2", "ip_address": "192.168.31.2", "fqdn": "host-192-168-31-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.2"}], "id": - "42f05b0e-634b-4bee-8f53-c70524e5e3ca", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "name": "", "admin_state_up": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", + "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.2"}, {"subnet_id": + "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.2"}], "id": + "1f5e7bef-bc68-431b-8492-ff5c2443f1c2", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-f69cdf31-0d52-4a13-9020-23c29e490cba", + "name": "", "admin_state_up": true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:c1:12:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-14", "ip_address": "172.16.17.14", - "fqdn": "host-172-16-17-14.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.14"}], "id": "4981da08-9fff-4b54-afcd-852dd8b0dc47", - "security_groups": [], "device_id": "0fd8ddad-ce60-415e-920e-e624c44a3275", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:7f:e6:5f"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:92:ac:9a"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], + "host-192-168-50-2", "ip_address": "192.168.50.2", "fqdn": "host-192-168-50-2.openstacklocal."}, + {"hostname": "host-192-168-51-2", "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", "ip_address": "192.168.20.2"}], "id": - "4c3e60f8-85f4-4cf2-82b4-9c19336605ef", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "ip_address": "192.168.50.2"}, {"subnet_id": + "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "ip_address": "192.168.51.2"}], "id": + "2063994c-5a38-4feb-972f-0358ace4bd93", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-465f0bf7-a827-428b-9f1f-14b01088bbfc", + "name": "", "admin_state_up": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:10:93:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:ba:11:28"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-30-1", "ip_address": "192.168.30.1", "fqdn": "host-192-168-30-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "ip_address": "192.168.30.1"}], + "id": "2e7bc06e-9f73-4aee-aa37-056322edb79f", "security_groups": [], "device_id": + "6be2a170-5478-4154-8ad7-09ec89f96c43", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:4d:31:dd"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", + "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-3-9", "ip_address": "192.168.3.9", "fqdn": "host-192-168-3-9.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e584057e-f15d-4038-82d2-b5ec77234adc", "ip_address": "192.168.3.9"}], "id": - "4fda52d0-cab3-4295-9b0a-a3a8ac5662d3", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.9"}], "id": + "4153df5a-47c7-4153-bc44-7bbf6b24fcda", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:d2:d0:c4"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", - "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:11:ee:ef"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-172-16-17-2", "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.3"}], - "id": "516492c7-ced0-417f-84c2-dfea07c0754b", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:91:9d"}, - {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", - "fqdn": "host-172-16-17-8.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.8"}], "id": "5ae6f72c-badd-41af-aa3f-8125cef51779", - "security_groups": [], "device_id": "67818fb7-ac48-45b4-a898-c06e020c0c08", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-5", "ip_address": "192.168.0.5", "fqdn": "host-192-168-0-5.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.5"}], "id": + "52ae1470-d9b7-4b7e-afe0-35c041470c9b", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "fd35db12-3284-414b-b225-c3c8b7fa00ee", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:8d:c7:fb"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-12", "ip_address": "172.16.17.12", "fqdn": "host-172-16-17-12.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.12"}], + "id": "557778a5-7af4-4525-9dfd-18e747b95cea", "security_groups": [], "device_id": + "3c1ea8cd-5506-406e-a074-aada66802c5c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:1c:e8:13"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-3", + "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": + true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", + "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.4"}], "id": "6080a8e1-de00-4c3b-b54d-4f4757b503e0", + "security_groups": [], "device_id": "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:11:62:1d"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:1b:13:27"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], + "host-192-168-20-1", "ip_address": "192.168.20.1", "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.1"}], + "id": "6b97bf79-27dd-4e2f-8e16-44c612da98c7", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-20-1", "ip_address": "192.168.20.1", - "fqdn": "host-192-168-20-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "ip_address": "192.168.20.1"}], "id": "69b0a020-b037-48dd-a645-d05105938411", - "security_groups": [], "device_id": "7ea583c6-e5cb-445d-9551-076e9b474efc", - "name": "", "admin_state_up": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:43:c7:66"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-40-2", + "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "a5e56f5e-f3cf-4224-aaba-71792b317537", "ip_address": "192.168.40.2"}], "id": + "6dcc20f8-daa1-4e4d-a6a5-895d06a4f2fe", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-a27c5012-ab85-4635-8266-e6d0cf7e3e96", + "name": "", "admin_state_up": true, "network_id": "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:ad:79:2e"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", - "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], - "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}], - "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b7:de:c0"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:39:d8:86"}, {"status": + "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-40-2", "ip_address": "192.168.40.2", "fqdn": "host-192-168-40-2.openstacklocal."}], + "host-192-168-0-8", "ip_address": "192.168.0.8", "fqdn": "host-192-168-0-8.openstacklocal."}, + {"hostname": "host-192-168-1-2", "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "ip_address": "192.168.40.2"}], "id": - "78b43be2-76a5-4957-aa6a-4201823e9cb8", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "name": "", "admin_state_up": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.8"}, {"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.2"}], "id": + "703c197f-094b-4922-ac04-dbec167c04d8", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-fe1373d6-962e-4439-8782-5997d874ca98", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6e:ce:96"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:90:ea:2d"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-6", "ip_address": "172.16.17.6", + "fqdn": "host-172-16-17-6.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.6"}], "id": "814133cb-3f0c-4b34-a5ee-eedd395df9a1", + "security_groups": [], "device_id": "b26229b6-ab4c-41bb-aee4-fab5be415ea9", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:da:7f:15"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-9", "ip_address": "172.16.17.9", + "fqdn": "host-172-16-17-9.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.9"}], "id": "8e21285b-2b74-43bf-8232-27421df0380c", + "security_groups": [], "device_id": "2e3d7974-453f-4ffa-9bd5-6eb3c5c87afd", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:09:5b:9c"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-0-3", "ip_address": "192.168.0.3", "fqdn": "host-192-168-0-3.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.3"}], "id": + "95bb8b36-96c6-4681-b5a0-b3049e512947", "security_groups": ["5ac9753f-9e5a-47b3-8279-62ab2837c568"], + "device_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:e6:f0:9d"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-1", + "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-19-21", "ip_address": "172.16.19.21", "fqdn": "host-172-16-19-21.openstacklocal."}], "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}], - "id": "848cf64d-c1e2-46cb-a3cf-663c397bfc24", "security_groups": [], "device_id": - "7ea583c6-e5cb-445d-9551-076e9b474efc", "name": "", "admin_state_up": true, - "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "dns_name": "", "binding:vif_details": + [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "ip_address": "172.16.19.21"}], + "id": "aa33066c-81b4-4764-bcf3-40df209a7da6", "security_groups": [], "device_id": + "8cbb4d55-6559-4315-968c-d471346db10e", "name": "", "admin_state_up": true, + "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:7f:bd:67"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:3b:06:05"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "host-192-168-3-1", "ip_address": "192.168.3.1", "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.1"}], - "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.1"}], + "id": "abf4be48-c5e8-4e1e-9d1c-8f9b1d966c1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:30:ed:40"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-30-1", "ip_address": "192.168.30.1", - "fqdn": "host-192-168-30-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "ip_address": "192.168.30.1"}], "id": "99b313d6-e408-4f7c-bda0-84ad3fcdd792", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:b1:f8:f7"}, {"status": - "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", - "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.7"}], "id": "a616898c-e157-4d8d-ad07-1c84c3b669f7", - "security_groups": [], "device_id": "dbe11330-3173-4c88-a33c-6bf8b9483ea2", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:5c:b3:29"}, - {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:05:49:37"}, {"status": "DOWN", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-6", + "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.3"}], "id": - "a65e76a2-e46c-415c-8438-4c960c51f0af", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "5c489d02-0165-4746-9568-3f1a616b89f1", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.6"}], "id": + "b1cc5d06-a048-44d5-9663-8ef28b936c89", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "9d6682b9-9be0-4468-a553-a6d222cc0088", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:32:9d:1b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-21-2", "ip_address": "172.16.21.2", - "fqdn": "host-172-16-21-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}], "id": "a704846e-89fc-49e8-b3ec-40e2d3115334", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:7b:c7:4b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-20-2", "ip_address": "172.16.20.2", - "fqdn": "host-172-16-20-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "ip_address": "172.16.20.2"}], "id": "aca58a44-904e-45ec-ae25-1152b681c952", - "security_groups": [], "device_id": "a5e22d9e-8777-467d-b66d-f543d55df1fa", - "name": "", "admin_state_up": true, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:6f:de:e1"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-50-4", "ip_address": "192.168.50.4", - "fqdn": "host-192-168-50-4.openstacklocal."}, {"hostname": "host-192-168-51-2", - "ip_address": "192.168.51.2", "fqdn": "host-192-168-51-2.openstacklocal."}], - "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "ip_address": "192.168.50.4"}, {"subnet_id": - "8ca156a0-7ec2-4981-96c6-6499214413cf", "ip_address": "192.168.51.2"}], "id": - "afbc3650-f096-4aeb-8c3f-12e303cd68eb", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-678bb925-5f9c-4718-874c-ac592109544c", - "name": "", "admin_state_up": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:40:60:10"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:d1:51:2b"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-2-1", "ip_address": "192.168.2.1", "fqdn": "host-192-168-2-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "ip_address": "192.168.2.1"}], - "id": "b26cbf34-c22f-4499-8e22-a7b8e8819d51", "security_groups": [], "device_id": - "c802e27e-da24-48cc-bf67-0fd4021dbb62", "name": "", "admin_state_up": true, - "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "dns_name": "", "binding:vif_details": + [{"subnet_id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "ip_address": "192.168.2.1"}], + "id": "b3b9277f-f1a1-45dc-a793-455dcc1f0b1c", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0f:8c:24"}, {"status": "N/A", "binding:host_id": + "", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": + [{"hostname": "host-172-16-17-8", "ip_address": "172.16.17.8", "fqdn": "host-172-16-17-8.openstacklocal."}], + "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.8"}], + "id": "c82e1101-2bbc-464c-90ac-223bbec2c392", "security_groups": [], "device_id": + "424ec388-8cfa-4527-aa92-fac0ff49d84c", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": + "", "mac_address": "fa:16:3e:96:cd:34"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-3", + "ip_address": "172.16.17.3", "fqdn": "host-172-16-17-3.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}], + "id": "d5eafe08-17f9-4c49-9517-a8bf0cb784c5", "security_groups": [], "device_id": + "35174cbc-e085-4b91-b2aa-999eb3e00ac8", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:2b:72:9d"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-3-1", "ip_address": "192.168.3.1", - "fqdn": "host-192-168-3-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "ip_address": "192.168.3.1"}], "id": "b6f5600a-2ca4-4ad2-8bb8-580a7b852e96", - "security_groups": [], "device_id": "c802e27e-da24-48cc-bf67-0fd4021dbb62", - "name": "", "admin_state_up": true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:21:86:e4"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-3-8", "ip_address": "192.168.3.8", "fqdn": "host-192-168-3-8.openstacklocal."}], + "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "ip_address": "192.168.3.8"}], "id": + "dba3605c-4322-4285-ba69-b51ca352770f", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", + "name": "", "admin_state_up": true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:e7:2e:0a"}, {"status": + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:e5:52:f2"}, {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-4", "ip_address": "172.16.17.4", - "fqdn": "host-172-16-17-4.openstacklocal."}], "device_owner": "network:floatingip", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.4"}], "id": "b89327b9-62c8-422e-a21c-2652a2157c05", - "security_groups": [], "device_id": "5f9557c0-e883-4fa3-ba04-953fe2e0779a", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", + [], "dns_assignment": [{"hostname": "host-172-16-17-7", "ip_address": "172.16.17.7", + "fqdn": "host-172-16-17-7.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.7"}], "id": "dcd3669d-b1ed-45f6-9ca8-712029d81baf", + "security_groups": [], "device_id": "66d3a536-8474-43a9-a456-aa4c70c139e5", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", - "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:ca:22:ec"}, - {"status": "DOWN", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:2c:ca:c7"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-9", "ip_address": "192.168.1.9", "fqdn": "host-192-168-1-9.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.9"}], "id": - "c6b36dfa-1c5d-455b-aa0b-0c03b14cfdd4", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "0575c680-eace-45d8-bdd8-4a6f389074f7", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d0:fe:e0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-4", "ip_address": "192.168.1.4", - "fqdn": "host-192-168-1-4.openstacklocal."}], "device_owner": "compute:None", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.4"}], "id": "c6be9350-0c97-4658-99c3-60429a0eecd1", - "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], "device_id": - "31b66a4b-0971-4a6e-a171-3da45ea56100", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + "host-192-168-31-1", "ip_address": "192.168.31.1", "fqdn": "host-192-168-31-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "ip_address": "192.168.31.1"}], + "id": "e4326086-0cce-47b9-aba7-bf56dd150cfb", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:0c:bb:fc"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-21-2", + "ip_address": "172.16.21.2", "fqdn": "host-172-16-21-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "ip_address": "172.16.21.2"}], + "id": "eda21eec-9bbf-485c-9884-56c28846809f", "security_groups": [], "device_id": + "81ec0f2e-2c14-440c-b57e-4f27f9a3be51", "name": "", "admin_state_up": true, + "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:af:c3:0b"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-0-3", "ip_address": "192.168.0.3", - "fqdn": "host-192-168-0-3.openstacklocal."}, {"hostname": "host-192-168-1-2", - "ip_address": "192.168.1.2", "fqdn": "host-192-168-1-2.openstacklocal."}], + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:23:0a:18"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-11", "ip_address": "172.16.17.11", + "fqdn": "host-172-16-17-11.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.11"}], "id": "f3b0c1ab-f3fc-45ef-8f56-69137082b4fb", + "security_groups": [], "device_id": "df48bf55-346d-4bcc-8c14-a5593882adb0", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:8e:2c:c5"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-20-2", "ip_address": "192.168.20.2", "fqdn": "host-192-168-20-2.openstacklocal."}], "device_owner": "network:dhcp", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.3"}, {"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.2"}], "id": - "d3a31dc0-6b6e-4f3f-af1e-b2d60dbc5e5f", "security_groups": [], "device_id": - "dhcp5849a229-436d-5b5b-9036-d6dc8a932370-fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:f1:ed:47"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-7", - "ip_address": "192.168.1.7", "fqdn": "host-192-168-1-7.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.7"}], "id": - "e0334a76-d0fa-4336-bad9-7cf9b659c259", "security_groups": ["dfe6fd1c-2080-4427-b64f-e37e3f218f66"], - "device_id": "1e4b01de-8c16-41d3-9e53-f45403de2eac", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:d9:50:af"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-31-1", "ip_address": "192.168.31.1", - "fqdn": "host-192-168-31-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", - "ip_address": "192.168.31.1"}], "id": "e92d688e-51e5-4632-bef6-222687f2f6a9", - "security_groups": [], "device_id": "8af4912d-4d48-420c-bb21-d7c023195e1d", - "name": "", "admin_state_up": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", + "063860da-16bf-4e80-9e03-8ba23bb78303", "ip_address": "192.168.20.2"}], "id": + "f7d62ba6-3c13-4e75-9449-633ff5da75df", "security_groups": [], "device_id": + "dhcp6ba48631-e745-5f55-8283-8d8a32e1a1b0-342b6359-7c2b-492c-ac17-cd0c33e210db", + "name": "", "admin_state_up": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:79:cd:2c"}, {"status": - "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-1-5", - "ip_address": "192.168.1.5", "fqdn": "host-192-168-1-5.openstacklocal."}], - "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.5"}], "id": - "f041a578-93c8-436b-8281-9937e9f572d6", "security_groups": ["6e805b68-ee24-48d5-836e-61b4f4addadb"], - "device_id": "751768e7-caf9-4d0a-8332-3149f05e4af5", "name": "", "admin_state_up": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", - "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": - "normal", "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:fb:9c:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:54:91:91"}, {"status": + "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-5", "ip_address": "172.16.17.5", + "fqdn": "host-172-16-17-5.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.5"}], "id": "fb2b264d-ee35-4504-935f-db2d7741f426", + "security_groups": [], "device_id": "15bfb907-390d-4ccf-8bf4-505110702897", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:e2:55:54"}, + {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": [], "extra_dhcp_opts": + [], "dns_assignment": [{"hostname": "host-172-16-17-13", "ip_address": "172.16.17.13", + "fqdn": "host-172-16-17-13.openstacklocal."}], "device_owner": "network:floatingip", + "binding:profile": {}, "fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", + "ip_address": "172.16.17.13"}], "id": "fbaea754-34a3-46ae-9b29-280628987e4e", + "security_groups": [], "device_id": "185eb02f-011e-4c33-a05a-e6e33d1f69f1", + "name": "", "admin_state_up": true, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "dns_name": "", "binding:vif_details": {}, "binding:vnic_type": "normal", + "binding:vif_type": "unbound", "tenant_id": "", "mac_address": "fa:16:3e:07:24:8a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:36 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12183,7 +12728,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -12194,44 +12739,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-be79a683-c56e-4d3b-8caa-6bffce4b69af + - req-56143cf6-df04-4715-a44b-f61ceb83b192 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:36 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:37 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12243,7 +12789,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -12254,41 +12800,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-b0520f27-c783-4506-b504-fb39f9bff372 + - req-0ddf1b90-8c47-4438-a122-b59393a473ca Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:37 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:38 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12303,7 +12850,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -12314,44 +12861,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-873b38e1-a4b2-469a-be5b-d9ef70be63f3 + - req-457294a9-d48b-4ea1-916c-ed8c4924acf3 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:38 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:39 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12363,7 +12911,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -12374,41 +12922,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-64746d1c-06ee-440b-a5f0-0ea19f563178 + - req-6896a7da-6a2f-4791-bfeb-a8d39265a070 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:39 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:40 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12423,7 +12972,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -12434,44 +12983,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-e79ac83c-2909-4aa0-8285-df39994b4273 + - req-31aa76af-1e71-449d-a132-bbf205a32eb5 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:40 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:40 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12483,7 +13033,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -12494,41 +13044,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-e165dee6-c259-4a39-8dca-fccfa0639963 + - req-22051674-39cf-40bc-8e2c-5c5197126587 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:41 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:41 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/routers?limit=1000 @@ -12543,7 +13094,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -12554,44 +13105,45 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-faab5dd3-4bee-4cf0-9053-8e609fe08a5c + - req-212174b8-677c-41c3-84af-72fc29752ba0 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:42 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:42 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers?limit=1000&marker=f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -12603,7 +13155,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -12614,41 +13166,42 @@ http_interactions: Content-Length: - '2443' X-Openstack-Request-Id: - - req-e49e7fe3-dbd2-4e28-b4b1-4b07eab56901 + - req-00ed8e95-56e4-4061-80ef-f540736d729a Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:43 GMT body: encoding: ASCII-8BIT string: '{"routers": [{"status": "ACTIVE", "external_gateway_info": {"network_id": - "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", "ip_address": "172.16.19.21"}]}, - "name": "EmsRefreshSpec-Router_20", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "7ea583c6-e5cb-445d-9551-076e9b474efc"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "8af4912d-4d48-420c-bb21-d7c023195e1d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "50426539-7226-4a52-895a-dd8af97779d9", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.3"}]}, + "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": true, "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, "routes": [], "ha": + false, "id": "35174cbc-e085-4b91-b2aa-999eb3e00ac8"}, {"status": "ACTIVE", + "external_gateway_info": {"network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "ip_address": "172.16.20.2"}]}, "name": "EmsRefreshSpec-Router_30", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "a5e22d9e-8777-467d-b66d-f543d55df1fa"}, - {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": - false, "routes": [], "ha": false, "id": "a99ac9e2-327c-42b3-b6b3-b6ed8fabff2d"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.3"}]}, "name": "EmsRefreshSpec-Router_2_3", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "c802e27e-da24-48cc-bf67-0fd4021dbb62"}, - {"status": "ACTIVE", "external_gateway_info": {"network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "enable_snat": true, "external_fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "6be2a170-5478-4154-8ad7-09ec89f96c43"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "ip_address": "172.16.21.2"}]}, "name": "EmsRefreshSpec-Router_40", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "81ec0f2e-2c14-440c-b57e-4f27f9a3be51"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "ip_address": "172.16.19.21"}]}, "name": "EmsRefreshSpec-Router_20", "admin_state_up": + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "8cbb4d55-6559-4315-968c-d471346db10e"}, + {"status": "ACTIVE", "external_gateway_info": {"network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "enable_snat": true, "external_fixed_ips": [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, "name": "EmsRefreshSpec-Router", "admin_state_up": - true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "distributed": false, - "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": false, + "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}, + {"status": "ACTIVE", "external_gateway_info": null, "name": "DisconnectedRouter", + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "distributed": + false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:44 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -12663,7 +13216,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -12672,202 +13225,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-2c42eaaf-d2f8-4bdf-9723-8ed2a19bb0f8 + - req-99115a64-adb8-4065-b894-becf98acaf26 Date: - - Tue, 14 Jan 2020 13:27:51 GMT + - Tue, 25 Feb 2020 08:23:45 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:51 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:45 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -12879,7 +13432,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -12888,17 +13441,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-3d0a6e95-32e6-4639-b944-13174dd0feeb + - req-f6d11981-cca9-467a-852c-61081a8d4e85 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:46 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:46 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -12913,7 +13466,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -12922,202 +13475,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-33326920-c197-4d86-9ee9-6435338e92ae + - req-79cc0a2f-ca8d-4a33-b761-6ddaf5b382e3 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:47 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:48 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13129,7 +13682,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -13138,17 +13691,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-284a1ca6-3636-42d8-b67a-fd969710b201 + - req-19afbce1-f4c8-4e2f-8012-bc5cb922b222 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:48 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:49 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -13163,7 +13716,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -13172,202 +13725,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-99ee1493-8ce2-4a49-88eb-1f9b9f2deb9a + - req-00b958d0-1cc2-4718-9071-3b6b17b1d572 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:50 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:50 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13379,7 +13932,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -13388,17 +13941,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-e7b7293e-1549-428c-a777-3144f951f03b + - req-320af436-d8e2-4aaf-8c62-2b7a9c4e5895 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:51 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:51 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -13413,7 +13966,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -13422,202 +13975,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-5b546b9e-9825-4550-9791-6f4d0fb1c04a + - req-a1ffa14e-a705-4aea-9191-6b8728d919bc Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:52 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:52 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -13629,7 +14182,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -13638,17 +14191,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-23221709-9e42-4659-9ffd-6ed39c399e36 + - req-483a98a3-a2df-40ff-a498-4ad37777175c Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:53 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:53 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -13663,7 +14216,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -13672,187 +14225,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-86ba0c80-72a1-4fc3-a1f2-f2b85575b03f + - req-a578b3e6-4024-482d-be59-53614a706135 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:54 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:55 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -13864,7 +14418,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5143ee851911420b975f07e6ca56fc85 + - 6c132fa471a04d218667348202451128 response: status: code: 200 @@ -13873,17 +14427,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-2436d0c1-c975-4d7f-960f-92fe898c6334 + - req-812e2d3b-48de-4935-89ee-b82873866720 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:56 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:56 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -13898,7 +14452,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -13907,187 +14461,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-01e16a18-9ad0-4c65-8cc9-4aa45d33861a + - req-f8e07c35-cc5c-406b-ba3f-e76e3a6a6cc1 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:56 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:57 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14099,7 +14654,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 136d63e81001467284df3c988e7c121d + - 313da7db9aff45d48be6dc572faeafd8 response: status: code: 200 @@ -14108,17 +14663,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-22d3de0a-c3df-4ba1-936b-d331cd067c24 + - req-f23e40f8-d1ab-4318-88dc-9e6173a8a566 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:58 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:23:58 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -14133,7 +14688,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -14142,187 +14697,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-2f7a3074-db58-4db0-a79c-5ced668916c7 + - req-63e7e862-eabf-40a8-9076-b92793f563d9 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:23:59 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:00 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14334,7 +14890,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d01c74b61e7e4742843ebe91034ab110 + - 0afc5f05affb45bf9be94e9a1ebb91aa response: status: code: 200 @@ -14343,17 +14899,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-f25a7641-1e9a-4143-b611-cd2cc44cd590 + - req-15052f8f-592f-4258-994b-f06ac9dba63a Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:24:01 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:01 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000 @@ -14368,7 +14924,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -14377,187 +14933,188 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '14242' + - '14240' X-Openstack-Request-Id: - - req-a35e6878-11a6-421f-8b79-4983f2c07913 + - req-5b5241a6-8e05-4fe5-9225-df377795b1bd Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:24:02 GMT body: encoding: ASCII-8BIT - string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=00616f8f-f1a3-4578-86ae-2fa6f7b157c6&page_reverse=True", - "rel": "previous"}], "security_group_rules": [{"remote_group_id": null, "direction": - "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, - {"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", "tenant_id": - "2db86326708a44629d0a27103e6daa04", "port_range_max": null, "port_range_min": - null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, - {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=010812a3-b9a6-4d52-a9a1-45a5e01c712a&page_reverse=True", + "rel": "previous"}], "security_group_rules": [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", + "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "4977912b-a964-4255-825d-52a6f96bce68", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "73e01895-0201-469b-9ec3-321e76345653", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:03 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=fb1555e6-1af6-4b4a-8920-7c614a971b14 + uri: http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&marker=ffc16518-4740-4898-a099-21b93a96fc41 body: encoding: US-ASCII string: '' @@ -14569,7 +15126,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5d5ef20b31f74d51a16dcb762cbaab90 + - f562b0542b264325a1d5c5a91fbeb6b1 response: status: code: 200 @@ -14578,17 +15135,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '172' + - '170' X-Openstack-Request-Id: - - req-711c86d1-d408-4647-bb6d-4b8ff0f437d2 + - req-60293b86-bd7e-48c7-9941-eeba48312c77 Date: - - Tue, 14 Jan 2020 13:27:52 GMT + - Tue, 25 Feb 2020 08:24:04 GMT body: encoding: ASCII-8BIT string: '{"security_group_rules_links": [{"href": "http://11.22.33.44:9696/v2.0/security-group-rules?limit=1000&page_reverse=True", "rel": "previous"}], "security_group_rules": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:52 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:04 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -14606,70 +15163,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:05 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-712e5aea-e3b0-436f-b491-de37e48ea1b5 + - req-7c3ef3fb-5943-499d-ad83-564f7c7f718c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.081573", "expires": - "2020-01-14T14:27:53Z", "id": "83252c2c69d24baf859d02bddd60874e", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["zoac88GNTHOW6SVR806f0w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:05.743252", "expires": + "2020-02-25T09:24:05Z", "id": "0d9a7ec2ca9a47809c1d20f7662a748c", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["NeHuTZNXTdG9Az1wHlEhmw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:05 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -14687,70 +15244,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:06 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-293477cc-2f45-4549-8da1-d9044ec11296 + - req-00ffa7c7-46eb-45d2-86be-5a8d0c85fb2c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.185367", "expires": - "2020-01-14T14:27:53Z", "id": "eba706f380b745cd8e526c4b14cd16ca", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["zmyDegNyQ2Sn2_403am98g"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:06.644032", "expires": + "2020-02-25T09:24:06Z", "id": "17e6bdd873c34bc4b66ccaf1286a56c9", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["uoxBLwhYRrml7puWgGcQVA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:06 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -14768,13 +15325,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:07 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d8ecc919-dd57-44e8-bdfb-ca1593708c98 + - req-d07fcf4e-3375-45df-92aa-98de995e2df3 Content-Length: - '370' Connection: @@ -14783,13 +15340,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.256478", "expires": - "2020-01-14T14:27:53Z", "id": "eb3dc1676f8545a2936a3dbd4f115f05", "audit_ids": - ["Qaw2buKJQ7GRGxTE5_dhNQ"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:07.518595", "expires": + "2020-02-25T09:24:07Z", "id": "b9a59f99ba9c4817bcadd0a763fb7af8", "audit_ids": + ["pfdAW6GpQw2DBcGbwgjrrw"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:07 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -14804,20 +15361,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eb3dc1676f8545a2936a3dbd4f115f05 + - b9a59f99ba9c4817bcadd0a763fb7af8 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:08 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c033fae1-dc0f-405f-bbf3-aeb42ca0b224 + - req-09b9913a-f068-417f-8008-904b718e4955 Content-Length: - '500' Connection: @@ -14826,20 +15383,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:08 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -14851,75 +15408,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:09 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-513d3466-116f-45f8-a370-e6ad010f4279 + - req-6722d6f1-bb1d-4197-8bfd-fced4fe2fc31 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.372588", "expires": - "2020-01-14T14:27:53Z", "id": "9c99038874ab4ae29d6c566a43385f8c", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["SEWwWfqpQhCcIn60tZgdFw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:09.807078", "expires": + "2020-02-25T09:24:09Z", "id": "ae5ccca625564cc38e73110668242832", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["rxUt-IuCSG-WOBscy7D6WQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:10 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -14931,69 +15488,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:10 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-5c4ae02e-66ec-49c6-91da-560823395020 + - req-104c568d-f161-442b-9389-6f9dab4754c9 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.475569", "expires": - "2020-01-14T14:27:53Z", "id": "156959f3fc0e4b2dbc9ccbd325803169", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["uNik6qaBTZCxc8FTaLfaaA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:10.897854", "expires": + "2020-02-25T09:24:10Z", "id": "27e1e2cf8d2d45c3a04954173c4f4e63", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["OqkNeOflSIKBYmIhcMPFdA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:11 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -15011,72 +15568,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:12 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-59bffd99-5dce-4754-8e1e-3742081b48db + - req-192e4eb9-d321-4df4-9419-735f3fc21a68 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:53.603306", "expires": - "2020-01-14T14:27:53Z", "id": "b434d84bb3724f7aac8549fe584fd9bc", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["OwOy65KEQBmMRzfcGAeHVA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:12.147870", "expires": + "2020-02-25T09:24:12Z", "id": "0b30108ba3304be79a8ff1792a691d6b", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["A_D6UW7gRJuqbm478BHG8w"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:12 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15088,30 +15645,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-fdaf5572-b6ef-498a-8501-0d6dcf39e05a + - req-e14999d2-b4e4-4c77-b29f-70a4612e8264 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-fdaf5572-b6ef-498a-8501-0d6dcf39e05a + - req-e14999d2-b4e4-4c77-b29f-70a4612e8264 Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:13 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:13 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15123,30 +15680,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-e2a622f6-a66d-4cf3-8f84-17fa3d563ac8 + - req-f970ab75-670a-48ec-abd0-c9948403696f Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-e2a622f6-a66d-4cf3-8f84-17fa3d563ac8 + - req-f970ab75-670a-48ec-abd0-c9948403696f Date: - - Tue, 14 Jan 2020 13:27:53 GMT + - Tue, 25 Feb 2020 08:24:13 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:53 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:14 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15158,30 +15715,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-80ad9e50-d6d5-43cf-bb07-6021aa2660cc + - req-35bed7c2-4d55-4b7e-8356-f8045fc1b53b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-80ad9e50-d6d5-43cf-bb07-6021aa2660cc + - req-35bed7c2-4d55-4b7e-8356-f8045fc1b53b Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:15 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:15 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15193,120 +15750,120 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-14dfd39d-dbd8-4c40-8174-bcef688c5cab + - req-fee70562-57cc-4a91-a98d-01c10ea2d35c Content-Type: - application/json Content-Length: - - '8262' + - '8226' X-Openstack-Request-Id: - - req-14dfd39d-dbd8-4c40-8174-bcef688c5cab + - req-fee70562-57cc-4a91-a98d-01c10ea2d35c Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:16 GMT body: encoding: ASCII-8BIT string: '{"volumes": [{"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/72936ed0-20e6-4a88-af75-7ab0d9183ff7", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/7b726625-94f8-4a09-86a6-c858a4265f0f", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "72936ed0-20e6-4a88-af75-7ab0d9183ff7", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "7b726625-94f8-4a09-86a6-c858a4265f0f", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-5", "bootable": "false", "created_at": - "2020-01-12T16:05:08.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/1a9fe944-f762-4b63-92a7-ea8b018f1b32", + "2020-02-24T12:09:11.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/020c2ccf-ce50-4693-b92b-002d71104e4e", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "1a9fe944-f762-4b63-92a7-ea8b018f1b32", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "020c2ccf-ce50-4693-b92b-002d71104e4e", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", - "image_name": "EmsRefreshSpec-Image", "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", + "image_name": "EmsRefreshSpec-Image", "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-4", "bootable": "true", "created_at": - "2020-01-12T16:05:05.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", "host_name": null, - "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": "/dev/vda", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2020-02-24T12:09:07.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", "host_name": null, + "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": "/dev/vda", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}, {"migration_status": - null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", "host_name": null, - "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": "/dev/vde", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}, {"migration_status": + null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", "host_name": null, + "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": "/dev/vde", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", + "name": "EmsRefreshSpec-Volume-2", "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}, {"migration_status": null, "attachments": [], "links": - [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/258fcc18-5c61-4a59-83c4-92969abe6fb9", + [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/f97913d2-9211-4aed-a34c-e2efcccb1008", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", - "id": "258fcc18-5c61-4a59-83c4-92969abe6fb9", "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", - "os-vol-tenant-attr:tenant_id": "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", + "id": "f97913d2-9211-4aed-a34c-e2efcccb1008", "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", + "os-vol-tenant-attr:tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {}, "status": "available", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume-FromSnapshot description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-FromSnapshot", - "bootable": "false", "created_at": "2020-01-12T16:04:40.000000", "volume_type": - "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", "host_name": null, - "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": "/dev/vdd", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "bootable": "false", "created_at": "2020-02-24T12:08:21.000000", "volume_type": + "iscsi"}, {"migration_status": null, "attachments": [{"server_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", "host_name": null, + "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": "/dev/vdd", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, - "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", + "name": "EmsRefreshSpec-Volume", "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:16 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/detail?limit=1000&marker=cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/detail?limit=1000&marker=c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -15318,30 +15875,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-548930c4-a07f-412a-b918-18b051bef490 + - req-737cd612-d9a1-4496-a8d1-2c7dd7a53607 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-548930c4-a07f-412a-b918-18b051bef490 + - req-737cd612-d9a1-4496-a8d1-2c7dd7a53607 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:17 GMT body: encoding: ASCII-8BIT string: '{"volumes": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:17 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail body: encoding: US-ASCII string: '' @@ -15353,30 +15910,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-29860536-2a77-4c2f-ad93-b74d6a66b19c + - req-53c6c4e1-5241-49a9-adb8-68ad42974e83 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-29860536-2a77-4c2f-ad93-b74d6a66b19c + - req-53c6c4e1-5241-49a9-adb8-68ad42974e83 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:18 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:18 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15388,30 +15945,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-8c52f96a-ba65-4917-9c74-e7004308f30e + - req-97e62345-cae1-47b8-9fd4-b7cfa1e2f243 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-8c52f96a-ba65-4917-9c74-e7004308f30e + - req-97e62345-cae1-47b8-9fd4-b7cfa1e2f243 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:19 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:19 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail body: encoding: US-ASCII string: '' @@ -15423,30 +15980,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1101aef5-d12c-4f34-8f61-31b6ca2d8650 + - req-2963daf1-822a-4a41-897d-230611063d17 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-1101aef5-d12c-4f34-8f61-31b6ca2d8650 + - req-2963daf1-822a-4a41-897d-230611063d17 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:20 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:20 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15458,30 +16015,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0e6f21b0-9227-4a6a-87b1-30e45c61f369 + - req-f7f54fe8-6d01-4940-80a1-523ba47f56dd Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-0e6f21b0-9227-4a6a-87b1-30e45c61f369 + - req-f7f54fe8-6d01-4940-80a1-523ba47f56dd Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:20 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:20 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail body: encoding: US-ASCII string: '' @@ -15493,30 +16050,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5040f261-e3c8-4bda-824b-fe3e977522d1 + - req-675318c0-a16e-485b-b518-543942a8c142 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-5040f261-e3c8-4bda-824b-fe3e977522d1 + - req-675318c0-a16e-485b-b518-543942a8c142 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:21 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:21 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15528,30 +16085,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-5485d9eb-8ce9-457b-8e36-de0de22d0104 + - req-32ac3c49-cdfd-428d-a9b0-1dcecb20a832 Content-Type: - application/json Content-Length: - '17' X-Openstack-Request-Id: - - req-5485d9eb-8ce9-457b-8e36-de0de22d0104 + - req-32ac3c49-cdfd-428d-a9b0-1dcecb20a832 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:22 GMT body: encoding: ASCII-8BIT string: '{"snapshots": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:22 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail body: encoding: US-ASCII string: '' @@ -15563,44 +16120,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1a98d489-479a-4b3a-816f-79450e87efad + - req-cf706878-0497-4bff-af13-fda8f2920843 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-1a98d489-479a-4b3a-816f-79450e87efad + - req-cf706878-0497-4bff-af13-fda8f2920843 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:23 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:23 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/snapshots/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/snapshots/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15612,44 +16169,44 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-c5d249bd-daae-4098-879b-3b4a71ab0141 + - req-dfd1f5a2-7a28-49bb-9518-50a3778f3f63 Content-Type: - application/json Content-Length: - '1313' X-Openstack-Request-Id: - - req-c5d249bd-daae-4098-879b-3b4a71ab0141 + - req-dfd1f5a2-7a28-49bb-9518-50a3778f3f63 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:24 GMT body: encoding: ASCII-8BIT string: '{"snapshots": [{"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": - "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:48.000000", "size": 1, "id": "8a996a71-f49a-44e1-8b6a-b74ddbbf4a31", + "100%", "name": "EmsRefreshSpec-VolumeSnapshot_0_3", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:44.000000", "size": 1, "id": "ef9cffdb-ddac-4b05-b845-4451d746ae61", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:45.000000", "size": 1, "id": "deb52dcc-edbc-45ae-b077-da7ddefaf5b0", + "EmsRefreshSpec-VolumeSnapshot_0_2", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:32.000000", "size": 1, "id": "715d0779-ecef-457c-9ffe-02b44e97528e", "description": "EmsRefreshSpec-VolumeSnapshot description"}, {"status": "available", "metadata": {}, "os-extended-snapshot-attributes:progress": "100%", "name": - "EmsRefreshSpec-VolumeSnapshot", "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "os-extended-snapshot-attributes:project_id": "8eb4b49207904f6eb33283732571bc0e", - "created_at": "2020-01-12T16:04:38.000000", "size": 1, "id": "97574d30-0ae7-4c68-ad27-18d9e28b1a1e", + "EmsRefreshSpec-VolumeSnapshot", "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "os-extended-snapshot-attributes:project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "created_at": "2020-02-24T12:08:18.000000", "size": 1, "id": "25e67de0-e08c-4036-acc7-d27a9f1f4f72", "description": "EmsRefreshSpec-VolumeSnapshot description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:24 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail body: encoding: US-ASCII string: '' @@ -15661,30 +16218,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-bc93b19d-85fc-452a-b8f1-176a2a7d1c6f + - req-06eb2c2a-774e-48cd-8e09-1da2f0dc5ca9 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-bc93b19d-85fc-452a-b8f1-176a2a7d1c6f + - req-06eb2c2a-774e-48cd-8e09-1da2f0dc5ca9 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:25 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:25 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15696,30 +16253,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7bd39a6c-0213-4a57-97ba-cba34b119a3e + - req-81b5156a-0f29-4c78-b8af-b730ad2bf27a Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-7bd39a6c-0213-4a57-97ba-cba34b119a3e + - req-81b5156a-0f29-4c78-b8af-b730ad2bf27a Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:26 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:26 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail body: encoding: US-ASCII string: '' @@ -15731,30 +16288,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-d006f3ed-ef56-4baf-ab21-3c90acc5635e + - req-aa5a6c5f-880d-4ed3-8204-cc1a20531fe9 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-d006f3ed-ef56-4baf-ab21-3c90acc5635e + - req-aa5a6c5f-880d-4ed3-8204-cc1a20531fe9 Date: - - Tue, 14 Jan 2020 13:27:54 GMT + - Tue, 25 Feb 2020 08:24:27 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:54 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:27 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15766,30 +16323,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-15b605f4-0c72-4b32-9742-3683388d6c79 + - req-61df8a04-b71b-4f6e-b4f8-50f7bf27711b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-15b605f4-0c72-4b32-9742-3683388d6c79 + - req-61df8a04-b71b-4f6e-b4f8-50f7bf27711b Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:28 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:28 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail body: encoding: US-ASCII string: '' @@ -15801,30 +16358,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6cc8687f-2ab1-4143-8ac1-9cc3c1b8e77b + - req-24a4004b-cf40-4ed2-b8e2-4c94934b738b Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-6cc8687f-2ab1-4143-8ac1-9cc3c1b8e77b + - req-24a4004b-cf40-4ed2-b8e2-4c94934b738b Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:29 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:29 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15836,30 +16393,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-da0ddc9f-c29e-429c-8448-ae263e5b36a2 + - req-8504cd60-a54b-4bd8-9042-74eea40c82d4 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-da0ddc9f-c29e-429c-8448-ae263e5b36a2 + - req-8504cd60-a54b-4bd8-9042-74eea40c82d4 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:30 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:30 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail body: encoding: US-ASCII string: '' @@ -15871,30 +16428,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-00f2507c-66fe-470a-b210-0b8b4120b4c6 + - req-56847a26-e0f5-47b1-a056-d8638bf54e01 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-00f2507c-66fe-470a-b210-0b8b4120b4c6 + - req-56847a26-e0f5-47b1-a056-d8638bf54e01 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:31 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:31 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/backups/detail?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/backups/detail?limit=1000 body: encoding: US-ASCII string: '' @@ -15906,30 +16463,30 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-01a507bc-fd99-4b97-aa20-6f32cbf78d48 + - req-56619315-56cd-4882-a538-c654d53c5540 Content-Type: - application/json Content-Length: - '15' X-Openstack-Request-Id: - - req-01a507bc-fd99-4b97-aa20-6f32cbf78d48 + - req-56619315-56cd-4882-a538-c654d53c5540 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:32 GMT body: encoding: ASCII-8BIT string: '{"backups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:32 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000 + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000 body: encoding: US-ASCII string: '' @@ -15941,37 +16498,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-bd27bb63-13a4-4933-b571-9bf05ffa3374 + - req-6ad7f1e5-dcbb-4999-b8ba-360e04b95066 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-bd27bb63-13a4-4933-b571-9bf05ffa3374 + - req-6ad7f1e5-dcbb-4999-b8ba-360e04b95066 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:33 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:33 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -15983,37 +16540,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9c99038874ab4ae29d6c566a43385f8c + - 17e6bdd873c34bc4b66ccaf1286a56c9 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1d9c1f0e-f3da-4801-9f05-3f1ac2aca621 + - req-60e23420-1981-4e57-84f5-815047f62744 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-1d9c1f0e-f3da-4801-9f05-3f1ac2aca621 + - req-60e23420-1981-4e57-84f5-815047f62744 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:34 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:34 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000 + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16025,37 +16582,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-72a51fd3-79eb-4fd7-bdaf-12142c16b65c + - req-29f68af9-1da2-41ec-9aa7-1d368034a167 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-72a51fd3-79eb-4fd7-bdaf-12142c16b65c + - req-29f68af9-1da2-41ec-9aa7-1d368034a167 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:35 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:35 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16067,37 +16624,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 156959f3fc0e4b2dbc9ccbd325803169 + - ae5ccca625564cc38e73110668242832 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-8c41a52e-9e95-4325-b273-53ddca4d2fb1 + - req-c5c44708-8ef4-4049-b9c5-03e87fe20727 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-8c41a52e-9e95-4325-b273-53ddca4d2fb1 + - req-c5c44708-8ef4-4049-b9c5-03e87fe20727 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:36 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:36 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000 + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16109,37 +16666,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-45b1a6cd-2b1a-48f6-bde7-2ff7e8b05aec + - req-d8cbeecd-b84f-4fcb-b425-3a98cf741f45 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-45b1a6cd-2b1a-48f6-bde7-2ff7e8b05aec + - req-d8cbeecd-b84f-4fcb-b425-3a98cf741f45 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:37 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:38 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16151,37 +16708,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - eba706f380b745cd8e526c4b14cd16ca + - 27e1e2cf8d2d45c3a04954173c4f4e63 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6231a6b2-a8d1-4b81-8462-6656aa447192 + - req-6a5e1421-3f76-402c-8fe3-5e352ec4e7f4 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-6231a6b2-a8d1-4b81-8462-6656aa447192 + - req-6a5e1421-3f76-402c-8fe3-5e352ec4e7f4 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:39 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:39 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000 + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000 body: encoding: US-ASCII string: '' @@ -16193,37 +16750,37 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-0ae34769-e62d-42b7-afe1-f24ae564b8e4 + - req-59a25640-2bbb-442a-8338-a242c88f4f29 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-0ae34769-e62d-42b7-afe1-f24ae564b8e4 + - req-59a25640-2bbb-442a-8338-a242c88f4f29 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:39 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:40 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/types?limit=1000&marker=cc0b8570-afa1-469e-b00a-a450068d6cab + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/types?limit=1000&marker=0a61779e-f53c-4998-b2cb-f18caa5e5fb3 body: encoding: US-ASCII string: '' @@ -16235,34 +16792,34 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b434d84bb3724f7aac8549fe584fd9bc + - 0b30108ba3304be79a8ff1792a691d6b response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-6c00f6fa-9fae-481d-91fd-5d7dcb8527e2 + - req-2d0dcaad-2c03-42be-8066-b4c59abba182 Content-Type: - application/json Content-Length: - '562' X-Openstack-Request-Id: - - req-6c00f6fa-9fae-481d-91fd-5d7dcb8527e2 + - req-2d0dcaad-2c03-42be-8066-b4c59abba182 Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:40 GMT body: encoding: ASCII-8BIT string: '{"volume_types": [{"name": "iscsi", "extra_specs": {"volume_backend_name": "lvm"}, "os-volume-type-access:is_public": true, "is_public": true, "id": - "5a511b00-b67e-4786-ad23-304abb55cf23", "description": null}, {"name": "random", + "048b0006-a5cd-46c5-a1dc-6aa8507412ed", "description": null}, {"name": "random", "extra_specs": {}, "os-volume-type-access:is_public": true, "is_public": true, - "id": "46cf0b9e-2daa-4dbb-8559-b37624a514d5", "description": null}, {"name": + "id": "70d46174-137e-43c0-ace5-d648c3bb5bc9", "description": null}, {"name": "EmsRefreshSpec-VolumeType", "extra_specs": {}, "os-volume-type-access:is_public": - true, "is_public": true, "id": "cc0b8570-afa1-469e-b00a-a450068d6cab", "description": + true, "is_public": true, "id": "0a61779e-f53c-4998-b2cb-f18caa5e5fb3", "description": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:41 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16280,70 +16837,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:41 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a9d11144-9940-46d3-969e-3fd0de83383b + - req-81c4da9e-27bb-4ac1-966d-e2fdfc2d8b12 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:55.641133", "expires": - "2020-01-14T14:27:55Z", "id": "e5127a5a57e846fc8cf2a89a38931020", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["zQr3oyFKS7yfFTZO5uE93w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:41.872888", "expires": + "2020-02-25T09:24:41Z", "id": "175f0da229144056be5b468696384f48", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["-__CJUwpT3u-Vz0fnS3V0A"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:42 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16361,70 +16918,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b96657bc-36ad-4f39-8634-a05508e47e5a + - req-c09c489e-29a7-40c0-8fd3-6efbf44d1b8f Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:55.760638", "expires": - "2020-01-14T14:27:55Z", "id": "921077656a91455d984e7f78edfb3618", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["hgPszzyOSsmZxYak9q2z4g"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:43.022661", "expires": + "2020-02-25T09:24:43Z", "id": "c5b8f09eb7fb4a56be641f9bc0f31ba0", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["3Is1ZOfPSRaI_oR-HqHibg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:43 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16442,13 +16999,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:44 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-18861c43-1db1-4741-8e7c-28b52d3fa106 + - req-ff048ccf-8b83-4356-b14a-95dacb794a17 Content-Length: - '370' Connection: @@ -16457,13 +17014,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:55.831122", "expires": - "2020-01-14T14:27:55Z", "id": "d2bfc8c6d632414fbc695ce9512ad79e", "audit_ids": - ["etbnwVAmQ5mWKjGpVvMvNw"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:44.327708", "expires": + "2020-02-25T09:24:44Z", "id": "ca214ed13523460e9dcd925d0c7c2122", "audit_ids": + ["U6rHJZ6zSPepZUc5-kmL0g"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:44 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -16478,20 +17035,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - d2bfc8c6d632414fbc695ce9512ad79e + - ca214ed13523460e9dcd925d0c7c2122 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:45 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-39b66aa0-ee0f-4cd9-8a0b-224f3d197655 + - req-52107b0a-232f-407c-bb94-5ed9f4271ad8 Content-Length: - '500' Connection: @@ -16500,20 +17057,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:45 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -16525,75 +17082,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:55 GMT + - Tue, 25 Feb 2020 08:24:46 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7151885b-4c61-448e-8253-5238868c0d7c + - req-92ee6e1e-425f-4cae-87e8-dbdc8dc7b89b Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:55.969333", "expires": - "2020-01-14T14:27:55Z", "id": "5be331f1836c451988909f6463196015", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["trupanb8ThSgMRWngN-z4g"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:46.485490", "expires": + "2020-02-25T09:24:46Z", "id": "de45ce1fc53d49129fdcec3be2ac6607", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["Rl0lxJ8DT1WiINzOzS9uaA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:55 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:46 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -16605,69 +17162,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:47 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1d1e42cf-c6f6-4705-9eea-91a53e95432a + - req-de1c338e-a1ad-4431-b594-aca43efc8c2e Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:56.085245", "expires": - "2020-01-14T14:27:56Z", "id": "30d2f3d08e5149f4ae404280a6ff1137", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["_ZeHaG3RSJO-WTwTxsBLKQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:47.409700", "expires": + "2020-02-25T09:24:47Z", "id": "5cd0ddb906da402a8d8188f6ed71ba78", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["FJqfn6nSToKniAt1WuLDbw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:47 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -16685,72 +17242,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:48 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-818b8426-ce15-4c3b-bd91-5163538bd020 + - req-684297a4-46c0-4500-b987-3c21d02f0603 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:56.206104", "expires": - "2020-01-14T14:27:56Z", "id": "3b935ab27673494da1a0d6c67049ef8f", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["RWmqR58wQ4iHh_OM5RZNng"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:24:48.551410", "expires": + "2020-02-25T09:24:48Z", "id": "520915dca6334940b08ede79b563e4d8", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["0zKPEPDSS3CGa1jL5TwrsQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:49 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -16762,7 +17319,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5be331f1836c451988909f6463196015 + - c5b8f09eb7fb4a56be641f9bc0f31ba0 response: status: code: 200 @@ -16775,25 +17332,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008476.31060' + - '1582619089.85662' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008476.31060' + - '1582619089.85662' X-Trans-Id: - - tx38f6a92ba03c4434b7048-005e1dc1dc + - tx1d30a42b4dce488497ec1-005e54d9d1 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:49 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:50 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -16805,7 +17362,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 30d2f3d08e5149f4ae404280a6ff1137 + - de45ce1fc53d49129fdcec3be2ac6607 response: status: code: 200 @@ -16818,25 +17375,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008476.39270' + - '1582619091.63251' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008476.39270' + - '1582619091.63251' X-Trans-Id: - - txe359d0fbd03542d1be257-005e1dc1dc + - txef726d36109045ef880c2-005e54d9d3 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:51 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:51 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -16848,7 +17405,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 921077656a91455d984e7f78edfb3618 + - 5cd0ddb906da402a8d8188f6ed71ba78 response: status: code: 200 @@ -16861,25 +17418,25 @@ http_interactions: X-Account-Object-Count: - '0' X-Timestamp: - - '1579008476.48251' + - '1582619092.68872' X-Account-Bytes-Used: - '0' X-Account-Container-Count: - '0' X-Put-Timestamp: - - '1579008476.48251' + - '1582619092.68872' X-Trans-Id: - - txc128b7c6f90a4d3bbf007-005e1dc1dc + - tx5e1136a9356d434bb56df-005e54d9d4 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:52 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:52 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000 body: encoding: US-ASCII string: '' @@ -16891,7 +17448,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3b935ab27673494da1a0d6c67049ef8f + - 520915dca6334940b08ede79b563e4d8 response: status: code: 200 @@ -16906,7 +17463,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -16920,18 +17477,18 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - tx4f2fbc99cc45417cb991c-005e1dc1dc + - txd5448e53f64645ff9f6a4-005e54d9d5 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:54 GMT body: encoding: ASCII-8BIT string: '[{"count": 3, "bytes": 33, "name": "dir_1"}, {"count": 0, "bytes": 0, "name": "dir_2"}, {"count": 0, "bytes": 0, "name": "dir_3"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:54 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/?format=json&limit=1000&marker=dir_3 + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/?format=json&limit=1000&marker=dir_3 body: encoding: US-ASCII string: '' @@ -16943,7 +17500,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3b935ab27673494da1a0d6c67049ef8f + - 520915dca6334940b08ede79b563e4d8 response: status: code: 200 @@ -16958,7 +17515,7 @@ http_interactions: X-Account-Storage-Policy-Policy-0-Container-Count: - '3' X-Timestamp: - - '1578845111.29475' + - '1582546156.91294' X-Account-Storage-Policy-Policy-0-Object-Count: - '3' X-Account-Bytes-Used: @@ -16972,17 +17529,17 @@ http_interactions: X-Account-Project-Domain-Id: - default X-Trans-Id: - - tx7008da8c219442ae97813-005e1dc1dc + - txc99c49da594644ab95910-005e54d9d6 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:54 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:55 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_1?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_1?format=json body: encoding: US-ASCII string: '' @@ -16994,7 +17551,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3b935ab27673494da1a0d6c67049ef8f + - 520915dca6334940b08ede79b563e4d8 response: status: code: 200 @@ -17011,26 +17568,26 @@ http_interactions: X-Container-Bytes-Used: - '33' X-Timestamp: - - '1578845111.31102' + - '1582546156.98956' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - txc3ff5951cce843dbac603-005e1dc1dc + - tx7707bc1e2668434db74f9-005e54d9d7 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:55 GMT body: encoding: ASCII-8BIT - string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-01-12T16:05:11.479940", + string: '[{"hash": "61257bf228e2f6802a196c9a460d19a8", "last_modified": "2020-02-24T12:09:18.782440", "bytes": 11, "name": "file_1", "content_type": "application/octet-stream"}, - {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-01-12T16:05:11.605500", + {"hash": "870255200d06681883a13b3ab43a78fb", "last_modified": "2020-02-24T12:09:19.306020", "bytes": 11, "name": "file_2", "content_type": "application/octet-stream"}, - {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-01-12T16:05:11.700990", + {"hash": "1727a9b61bddf85bbe7a5710c9f45691", "last_modified": "2020-02-24T12:09:20.144630", "bytes": 11, "name": "file_3", "content_type": "application/octet-stream"}]' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:56 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_2?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_2?format=json body: encoding: US-ASCII string: '' @@ -17042,7 +17599,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3b935ab27673494da1a0d6c67049ef8f + - 520915dca6334940b08ede79b563e4d8 response: status: code: 200 @@ -17059,21 +17616,21 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845111.87461' + - '1582546162.13347' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - tx29802968538144d1aec8a-005e1dc1dc + - txe6370a92e6e24cb6b7f97-005e54d9d8 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:57 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:57 GMT - request: method: get - uri: http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e/dir_3?format=json + uri: http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9/dir_3?format=json body: encoding: US-ASCII string: '' @@ -17085,7 +17642,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3b935ab27673494da1a0d6c67049ef8f + - 520915dca6334940b08ede79b563e4d8 response: status: code: 200 @@ -17102,21 +17659,21 @@ http_interactions: X-Container-Bytes-Used: - '0' X-Timestamp: - - '1578845112.04818' + - '1582546164.45411' Content-Type: - application/json; charset=utf-8 X-Trans-Id: - - txb271b4d0a648441691124-005e1dc1dc + - tx99f2c811100049daada3c-005e54d9da Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:58 GMT body: encoding: ASCII-8BIT string: "[]" - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:58 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/networks/23d9a208-6033-4b22-9b05-2d308ecc35fa + uri: http://11.22.33.44:9696/v2.0/networks/9e975de8-88ba-483b-9152-caa1ae01d111 body: encoding: US-ASCII string: '' @@ -17128,7 +17685,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 81f63b08d63046f58228be037a2046e3 + - 1a41525f25ab46ee96f4d477650e6c12 response: status: code: 200 @@ -17139,19 +17696,19 @@ http_interactions: Content-Length: - '409' X-Openstack-Request-Id: - - req-2492da61-b8ae-4094-86f4-00afc78e1aad + - req-f19cfc94-85cb-4d16-b426-76188e5a2d0e Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:24:59 GMT body: encoding: ASCII-8BIT - string: '{"network": {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], + string: '{"network": {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": null}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:24:59 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -17166,7 +17723,1322 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8c459e67d8df4655a28b8743fdd4e110 + - 1a41525f25ab46ee96f4d477650e6c12 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-758c9be1-8b77-4266-afb4-99735b1f4b28 + Date: + - Tue, 25 Feb 2020 08:24:59 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:00 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 1a41525f25ab46ee96f4d477650e6c12 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-fb8789b2-2f25-4315-98ff-b723dc34cc07 + Date: + - Tue, 25 Feb 2020 08:25:01 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:02 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 1a41525f25ab46ee96f4d477650e6c12 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-e60804fc-ffc8-4a46-b735-dcaee01a2fcb + Date: + - Tue, 25 Feb 2020 08:25:02 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:02 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 1a41525f25ab46ee96f4d477650e6c12 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-59474578-b241-42bf-b112-fbae493c5f0e + Date: + - Tue, 25 Feb 2020 08:25:03 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:04 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 1a41525f25ab46ee96f4d477650e6c12 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-d39cfcf3-a88d-4154-8402-3fa66fb87797 + Date: + - Tue, 25 Feb 2020 08:25:05 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:05 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-7f2170d2-7e1e-4cda-b93c-2497ee4e6936 + Date: + - Tue, 25 Feb 2020 08:25:06 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:06 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-f95adffc-f7a3-4950-883c-70452990f624 + Date: + - Tue, 25 Feb 2020 08:25:07 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:08 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-3695ef9a-36ba-457b-bf8c-19b8caf7d1de + Date: + - Tue, 25 Feb 2020 08:25:08 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:09 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-0c8c4f48-e089-4c5c-a528-65c2c1c20119 + Date: + - Tue, 25 Feb 2020 08:25:10 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:10 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-4eb59768-5bf5-40fa-9c48-575e5f2989d0 + Date: + - Tue, 25 Feb 2020 08:25:11 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:11 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 9f988fd5d49f4bbb944978bef3904c4a response: status: code: 200 @@ -17177,116 +19049,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-d0718bae-ee25-4bb0-b7f5-d060dd5cbc32 + - req-e4909444-5a3e-4825-b5f8-e6bbaac1d626 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:25:12 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:13 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -17298,7 +19170,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8c459e67d8df4655a28b8743fdd4e110 + - 9f988fd5d49f4bbb944978bef3904c4a response: status: code: 200 @@ -17309,113 +19181,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-e3c63493-5f6d-4441-8093-5e4e9d4711ce + - req-8abf9bcb-3406-4b3d-bb84-372bc6998942 Date: - - Tue, 14 Jan 2020 13:27:56 GMT + - Tue, 25 Feb 2020 08:25:13 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:56 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:14 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -17430,7 +19302,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 65b001b7712f4db498aad7e4aef5e264 + - aea75520c14b4ded9528e6b288772cfc response: status: code: 200 @@ -17441,115 +19313,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-561875f6-f2b8-4746-8b30-0cdc36ce3852 + - req-bce9904e-4473-40c3-9901-ecb7d31accfa Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:15 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:16 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -17561,7 +19433,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 65b001b7712f4db498aad7e4aef5e264 + - aea75520c14b4ded9528e6b288772cfc response: status: code: 200 @@ -17572,112 +19444,245 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-58648692-fa83-41a6-9595-989857cc4746 + - req-34d12983-c131-4e9b-baf9-ae71a32056b3 Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:16 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:17 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - aea75520c14b4ded9528e6b288772cfc + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-8c67f68b-e38f-4a1e-9a46-b42e4dfb7a93 + Date: + - Tue, 25 Feb 2020 08:25:18 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:18 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -17692,7 +19697,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 81f63b08d63046f58228be037a2046e3 + - 7ec3c7ab7a24444c83e067effb2210dc response: status: code: 200 @@ -17703,115 +19708,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-bc3ddd4c-db60-4c9e-8ca7-9758274d4bae + - req-25c608e2-ab5c-4981-8ffe-9499d209babd Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:19 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:20 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -17823,7 +19829,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 81f63b08d63046f58228be037a2046e3 + - 7ec3c7ab7a24444c83e067effb2210dc response: status: code: 200 @@ -17834,115 +19840,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-adf770d9-9718-4809-a00d-61f741445f00 + - req-8ca07370-56c3-415e-b504-75aaf5ea9c3e Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:21 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:21 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -17954,7 +19960,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c0158af74f3942d8a1f1da497a20f42c + - 7ec3c7ab7a24444c83e067effb2210dc response: status: code: 200 @@ -17965,116 +19971,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-9c2c9c2c-f6e8-4156-b78e-437cc0cbdac0 + - req-1a0a3133-dd5f-4fd9-8430-2c885f8433bc Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:22 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:23 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=be64e82a-7735-4ae3-a390-b0fb6441c184 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -18086,7 +20092,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c0158af74f3942d8a1f1da497a20f42c + - 7ec3c7ab7a24444c83e067effb2210dc response: status: code: 200 @@ -18097,111 +20103,111 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-1cd92b4b-8a9a-4131-b68c-bc324a9f83e0 + - req-d8c8dfdb-ae65-4d41-9a81-ad4daabd89af Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:25:23 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:57 GMT -recorded_with: VCR 5.0.0 + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:24 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_port_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_port_targeted_refresh.yml index 09f857a2c..85b2613c6 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_port_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_port_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e1fa8a1b-4747-4382-b5d7-0a6962fee495 + - req-8ccc973e-b362-4b3e-b8d7-8f4aaa3ae708 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:14.623035", "expires": - "2020-01-14T14:28:14Z", "id": "959e0e2609364d298070ec6c1ca480e5", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["N_NsFF-cS0uUeWcLyHQZMQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:27.574590", "expires": + "2020-02-25T09:19:27Z", "id": "f4bbba3c918047a5b34539e1b057a6ae", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["5Cg8An1HRpufYq4q7uKw4Q"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:14 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:27 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 959e0e2609364d298070ec6c1ca480e5 + - f4bbba3c918047a5b34539e1b057a6ae response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:28 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,8 +114,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:14 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:28 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -133,70 +133,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c0045b37-75a2-4b33-94ef-f31c6465396a + - req-d1e0b3c5-b0c8-4b8a-b8f2-bea21f5daf93 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:14.736373", "expires": - "2020-01-14T14:28:14Z", "id": "76685507285c4889898eb3fe52e162f6", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["7Gj4T6l9Tx2I-xYwEt9i6w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:29.516849", "expires": + "2020-02-25T09:19:29Z", "id": "97575538afb344258454880ff9f3477a", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["jyaVu6OHT_6hpI5BMGBayg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:14 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -214,70 +214,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f0c8f535-7fe4-445c-a042-14fba00d9f1f + - req-f9a96dd2-1005-4357-bffb-e71d943b4b07 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:14.844410", "expires": - "2020-01-14T14:28:14Z", "id": "ad9cfdd33a074826b517248861c9edb3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["rreOcbqeRZuSSm13knT9tw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:30.761489", "expires": + "2020-02-25T09:19:30Z", "id": "bff0ab6e43614b64b28ed89b2912b1de", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["GiDHvrs_QwaZ8Lwcl-QTcg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:14 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:30 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -295,70 +295,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9f2ba414-d9c1-4761-80d9-a0079e425656 + - req-12d8a26b-0793-47fb-8e3f-dddfe933ac55 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:14.950733", "expires": - "2020-01-14T14:28:14Z", "id": "7a0807788a1a47059ef0088d3f346b27", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["S4mm39JnTE2xol3Kpuxn_A"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:31.483038", "expires": + "2020-02-25T09:19:31Z", "id": "9cfac7436a4a48de83df5d48dc23ac0d", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["BUgEdOvnSnqu7TE5mx77EQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:14 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:31 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -376,13 +376,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:14 GMT + - Tue, 25 Feb 2020 08:19:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d4bdcecb-db62-4ae6-aa15-d590412ed39f + - req-d14c5ffc-c0b0-48d1-bd90-87e934931b33 Content-Length: - '370' Connection: @@ -391,13 +391,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:15.020233", "expires": - "2020-01-14T14:28:15Z", "id": "5b8821662f204a6a819645f47d06ed58", "audit_ids": - ["guQT0IOaRm-PSP1pHT6sKA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:32.571834", "expires": + "2020-02-25T09:19:32Z", "id": "69849894083b437f856aa38e309ae72b", "audit_ids": + ["duc4IRFUQJum4lVsJn0EQA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:32 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -412,20 +412,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5b8821662f204a6a819645f47d06ed58 + - 69849894083b437f856aa38e309ae72b response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:33 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-c7c54520-ad62-4b3c-b148-ea24d1dee83c + - req-ab6ac7fc-ed88-43f9-a782-36ea5c65b05f Content-Length: - '500' Connection: @@ -434,20 +434,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:33 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -459,75 +459,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-69c358dd-5bce-4dcd-abaa-b69b26727a38 + - req-e1e335ec-857a-413e-a723-0c251c1ec163 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:15.136904", "expires": - "2020-01-14T14:28:15Z", "id": "7682f4e44b944d1ab8442879d4e7c14c", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["95fHUbg9RoSGlAQK6WKTOA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:34.434116", "expires": + "2020-02-25T09:19:34Z", "id": "d27237cc4f79464a806af64e5812de88", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["0GwshdWtSVmnwMsQ4QS7CQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:34 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -539,69 +539,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d60156f7-77ba-4082-b907-6fabd14ab268 + - req-3bc81881-3ca2-4a72-b3da-06ee0d25ad3a Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:15.242249", "expires": - "2020-01-14T14:28:15Z", "id": "0434e3183dda4146a179ae5572fff5b5", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["rVH546VEQmOUyS1FpTZvBA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:35.358241", "expires": + "2020-02-25T09:19:35Z", "id": "6a8c69d6a25d46f2a67e22ed2c0b0bc1", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["55BSh2fkScGgHgO45lly3A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -619,69 +619,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-faffcb14-7bbb-4483-bb7e-c64d609ae933 + - req-cec8f6fc-1202-469a-bd8c-38f0f17bfbc0 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:15.346826", "expires": - "2020-01-14T14:28:15Z", "id": "c7f7073067174043bb1ded938f2c4052", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["LikgmC3EQeimIhaEM_Sgkw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:19:36.386327", "expires": + "2020-02-25T09:19:36Z", "id": "6fd71054900b4e8db55e5ad73c783e5c", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["5UDpb5-BSeWJPwgAqFg-mw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:36 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -696,7 +696,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7682f4e44b944d1ab8442879d4e7c14c + - 9cfac7436a4a48de83df5d48dc23ac0d response: status: code: 200 @@ -707,116 +707,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-7302d303-4ac9-42a0-b9b3-9b22161d1e1c + - req-a80d3d6e-fb38-4d8e-ac37-51e1209c0a6c Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:37 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:38 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -828,7 +827,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7682f4e44b944d1ab8442879d4e7c14c + - 9cfac7436a4a48de83df5d48dc23ac0d response: status: code: 200 @@ -839,116 +838,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-4860aa46-2f49-4b8b-9aee-54dc0e8ac30f + - req-852513b5-fafe-4218-9308-c0de43620719 Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:39 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:40 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -960,7 +959,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0434e3183dda4146a179ae5572fff5b5 + - 9cfac7436a4a48de83df5d48dc23ac0d response: status: code: 200 @@ -971,116 +970,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-8f8adb42-248f-4cac-9d1c-a191f00e3d25 + - req-54baa632-1f7b-428e-a426-fc0c7a3fdc27 Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:40 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:41 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -1092,7 +1091,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0434e3183dda4146a179ae5572fff5b5 + - d27237cc4f79464a806af64e5812de88 response: status: code: 200 @@ -1103,115 +1102,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-d48f3771-7a29-4b9c-a1ef-35ca758fcf6e + - req-3547e99f-4dd2-44a1-aa46-40cd6d19ea85 Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:42 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:42 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -1223,7 +1222,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7a0807788a1a47059ef0088d3f346b27 + - d27237cc4f79464a806af64e5812de88 response: status: code: 200 @@ -1234,115 +1233,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-df12adec-1338-4a4a-9242-9b2afa4c8010 + - req-1b7f9e0d-ea1a-4c24-bbd8-8e415c2c63fc Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:43 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT -- request: + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:44 GMT +- request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1354,7 +1354,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7a0807788a1a47059ef0088d3f346b27 + - d27237cc4f79464a806af64e5812de88 response: status: code: 200 @@ -1365,115 +1365,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-596d55c6-67f5-4b5d-adba-8fd4ad954475 + - req-13d8cafa-522c-4a34-b730-d920c9dd9311 Date: - - Tue, 14 Jan 2020 13:28:15 GMT + - Tue, 25 Feb 2020 08:19:45 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:15 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:45 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -1485,7 +1485,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c7f7073067174043bb1ded938f2c4052 + - d27237cc4f79464a806af64e5812de88 response: status: code: 200 @@ -1496,115 +1496,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-5bd6d006-5b58-43e4-8f96-aa88d6b87042 + - req-6e4d9101-e1e3-4f8d-8712-467134203e86 Date: - - Tue, 14 Jan 2020 13:28:16 GMT + - Tue, 25 Feb 2020 08:19:46 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:16 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:46 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1616,7 +1617,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c7f7073067174043bb1ded938f2c4052 + - d27237cc4f79464a806af64e5812de88 response: status: code: 200 @@ -1627,115 +1628,1959 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-b191b37a-9d72-4b63-b7de-6e67d5b8b344 + - req-3267c938-df06-4d6e-8e0c-2e86db37fc3e Date: - - Tue, 14 Jan 2020 13:28:16 GMT + - Tue, 25 Feb 2020 08:19:47 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:47 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - d27237cc4f79464a806af64e5812de88 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-c4feab5d-3c19-4dc8-9887-a3f5a3618e1d + Date: + - Tue, 25 Feb 2020 08:19:49 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:49 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - d27237cc4f79464a806af64e5812de88 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-76cdf52e-e549-4c0f-9a2c-bbfc00e821f2 + Date: + - Tue, 25 Feb 2020 08:19:50 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:51 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - d27237cc4f79464a806af64e5812de88 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-1a25783e-28b8-4e17-acaf-18d8ca0b21d3 + Date: + - Tue, 25 Feb 2020 08:19:51 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:52 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - d27237cc4f79464a806af64e5812de88 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-c8cd8cb0-7bd1-4a35-a3e4-9c98e1b6ba8a + Date: + - Tue, 25 Feb 2020 08:19:53 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:54 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6a8c69d6a25d46f2a67e22ed2c0b0bc1 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-f548ce21-7beb-49d4-b355-8678e5afa62f + Date: + - Tue, 25 Feb 2020 08:19:54 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:55 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6a8c69d6a25d46f2a67e22ed2c0b0bc1 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-9e30cb75-8fa8-4cfe-b86a-93f523ea0a30 + Date: + - Tue, 25 Feb 2020 08:19:56 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:57 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-8000d403-e050-4646-b538-bb6597849181 + Date: + - Tue, 25 Feb 2020 08:19:58 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:58 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-928077ba-bd04-4405-9890-06642f8b276c + Date: + - Tue, 25 Feb 2020 08:19:59 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:00 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-ef7060e8-c488-4794-875d-a542d7c13b18 + Date: + - Tue, 25 Feb 2020 08:20:01 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:01 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-4c7a6d02-5b61-4644-b2ce-10f82740d039 + Date: + - Tue, 25 Feb 2020 08:20:02 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:02 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-df76ee7c-9717-45ee-acf3-93e766a507e6 + Date: + - Tue, 25 Feb 2020 08:20:03 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:04 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-b558b633-8456-4682-b099-416e583e29c4 + Date: + - Tue, 25 Feb 2020 08:20:04 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:05 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-c9e651ea-5c55-42a9-a8e6-73bb9a8c3b88 + Date: + - Tue, 25 Feb 2020 08:20:05 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:06 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6fd71054900b4e8db55e5ad73c783e5c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-14340de7-9e46-405e-9955-b7f6e27531a6 + Date: + - Tue, 25 Feb 2020 08:20:07 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:16 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:08 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports/0134788e-bb49-4327-8f26-5584d4426305 + uri: http://11.22.33.44:9696/v2.0/ports/04439a32-2c8b-495d-8ca2-aabfffca56ba body: encoding: US-ASCII string: '' @@ -1747,7 +3592,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7a0807788a1a47059ef0088d3f346b27 + - 9cfac7436a4a48de83df5d48dc23ac0d response: status: code: 200 @@ -1756,25 +3601,26 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '759' + - '913' X-Openstack-Request-Id: - - req-407b2a1c-623c-4fc1-a0e5-8965427adf63 + - req-0fd7abeb-7220-4eb4-9fd1-1296671ea314 Date: - - Tue, 14 Jan 2020 13:28:16 GMT + - Tue, 25 Feb 2020 08:20:08 GMT body: encoding: ASCII-8BIT - string: '{"port": {"status": "N/A", "binding:host_id": "", "allowed_address_pairs": - [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-6", - "ip_address": "172.16.17.6", "fqdn": "host-172-16-17-6.openstacklocal."}], - "device_owner": "network:floatingip", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.6"}], - "id": "0134788e-bb49-4327-8f26-5584d4426305", "security_groups": [], "device_id": - "229ea239-7fc6-4a22-a90f-f37936e41837", "name": "", "admin_state_up": true, - "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "dns_name": "", "binding:vif_details": - {}, "binding:vnic_type": "normal", "binding:vif_type": "unbound", "tenant_id": - "", "mac_address": "fa:16:3e:cb:3d:65"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:16 GMT + string: '{"port": {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-4", "ip_address": "192.168.1.4", "fqdn": "host-192-168-1-4.openstacklocal."}], + "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.4"}], "id": + "04439a32-2c8b-495d-8ca2-aabfffca56ba", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e"], + "device_id": "3792ff5a-3236-4123-b5b8-2e48a497a3cf", "name": "", "admin_state_up": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", + "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": + "normal", "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:ec:3b:3f"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:08 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1792,68 +3638,68 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:16 GMT + - Tue, 25 Feb 2020 08:20:09 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-486ae813-6713-4977-9375-079b4bafda61 + - req-94c70d10-625a-4ab1-8fd4-5fed6edfc28a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:16.224831", "expires": - "2020-01-14T14:28:16Z", "id": "385f99b7c7014d7aaa02868e50c385d0", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["bIcEgJKaSxqwe_xUpsHT9Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:09.594760", "expires": + "2020-02-25T09:20:09Z", "id": "e57a737eb6c34c06a734ddabce9f74ae", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["2prcBvQGQQqRMMIOg4zFbA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:16 GMT -recorded_with: VCR 5.0.0 + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:09 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_router_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_router_targeted_refresh.yml index 003f6df74..c7d20d87d 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_router_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_router_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:20:11 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-527bd2de-f196-4233-a078-a00270e2c732 + - req-db449c65-58a9-4009-9ccd-9e2bb82be855 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:10.944345", "expires": - "2020-01-14T14:28:10Z", "id": "50c119581822485084ea68e53330ac8f", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["SEuSKQ_mQnibEeGt9FpAwA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:11.358852", "expires": + "2020-02-25T09:20:11Z", "id": "d92ec91c5e394dd5b2789e157364ea12", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["rk6ul5ThRh6hPGuUP2NQNw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:11 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 50c119581822485084ea68e53330ac8f + - d92ec91c5e394dd5b2789e157364ea12 response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:20:12 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,8 +114,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:12 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -133,70 +133,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:20:13 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-543e251f-d494-41fc-ab86-f404a882d76a + - req-51b59c8a-6569-4435-855b-d3b8abbaa086 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.059313", "expires": - "2020-01-14T14:28:11Z", "id": "a03d65925fe84c7ab9b499822ac6bba5", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["ZP30ClY4QjO1yfDPjJ3V-Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:13.196408", "expires": + "2020-02-25T09:20:13Z", "id": "146c7ee133924370baa0ef2e0bc4bc5f", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["S0nrw77tQbisTA6xiakTuw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:13 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -214,70 +214,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:13 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-efa0f1db-2cff-4782-b70f-0c2d962722fe + - req-1cd17a94-2c0e-4b8e-8412-b18b13e70b92 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.166783", "expires": - "2020-01-14T14:28:11Z", "id": "3ffa1396950a4101a2f4e96061b59b7a", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["UXiirYu4RzewQqVRKQn2Ng"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:13.965928", "expires": + "2020-02-25T09:20:13Z", "id": "78981770b2594149840234990a4b5c12", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["ODTd_yfcQZWxAtE93K_h8A"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:14 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -295,70 +295,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:15 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a7ea468d-b812-412d-8e60-2deac1f68c01 + - req-5d8fffa6-ba57-45b8-a73e-d3e03e031e4b Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.273656", "expires": - "2020-01-14T14:28:11Z", "id": "c5aa8bdd40b74f11b3dabb569a5213f3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["_3P_AvokSbain6LzPgsinw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:15.247358", "expires": + "2020-02-25T09:20:15Z", "id": "18e5409f5be847cfbaa5b7687aa1ad8c", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["U-MzXNLSSq2SbDx60Vt4Zg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:15 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -376,13 +376,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:16 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2c945e26-cfe8-4889-a0b7-1addd3a645b2 + - req-7d88d771-fc1f-420f-ae54-f245ac4463dd Content-Length: - '370' Connection: @@ -391,13 +391,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.345842", "expires": - "2020-01-14T14:28:11Z", "id": "821434a0e917427581f409173da6b3ef", "audit_ids": - ["XpK0Pho5Q1KfYonby2hHlg"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:16.462521", "expires": + "2020-02-25T09:20:16Z", "id": "904fa6b3a00c43269074510d3fa1bebe", "audit_ids": + ["2verGOtMTuW3AXN7cGemSA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:16 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -412,20 +412,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 821434a0e917427581f409173da6b3ef + - 904fa6b3a00c43269074510d3fa1bebe response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:17 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3495ab1f-19e0-451d-ae6c-8c5fc62a286e + - req-6759b225-48c7-4e27-8c74-22b18f1a8d2d Content-Length: - '500' Connection: @@ -434,20 +434,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:17 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -459,75 +459,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:18 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-84b0cdf5-cb46-43a5-9af0-090a8b669ab1 + - req-cfadc1e7-af5a-4369-86cd-bedeb8378504 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.471450", "expires": - "2020-01-14T14:28:11Z", "id": "719fedb28d8a4fa18796ee1739355ad9", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["EQ9g8_NiQzmCKW2Yyi_W0Q"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:18.875126", "expires": + "2020-02-25T09:20:18Z", "id": "193518ef0b1e4df38e18a3817f958dee", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["sINx_IDXSVeBc7ZiVii2sA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:19 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -539,69 +539,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:20 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1f383104-d5a2-4a22-922f-408ad3e915a5 + - req-69425ff4-2c17-48fa-8a21-ebf7da0e1166 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.578952", "expires": - "2020-01-14T14:28:11Z", "id": "4efc35c4aa264660bc20d75ac44729f8", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["QAudo4BLQi6ZLhiYBtwwaA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:20.494992", "expires": + "2020-02-25T09:20:20Z", "id": "6f248620a923497b9b7456624e648fdd", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["48FPvCzVRWCEib3p4oUwoA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:20 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -619,69 +619,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:21 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3d515aea-dcc3-41c7-a45f-ab9c032195d1 + - req-dd36b26c-0742-4576-b23a-e227f1800510 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:11.664823", "expires": - "2020-01-14T14:28:11Z", "id": "8536e03cb7ac48e59c4d92ad22d39839", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["_xMPzouXSMqxGce7XzbPmw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:21.183330", "expires": + "2020-02-25T09:20:21Z", "id": "cdfc1498132349b5ac355c5d8a642372", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["-ITkBVFGQN-7u-2loj4YDw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:21 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -696,7 +696,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 719fedb28d8a4fa18796ee1739355ad9 + - 18e5409f5be847cfbaa5b7687aa1ad8c response: status: code: 200 @@ -707,116 +707,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-2064add6-4409-4c12-b064-d4ebfd7919c4 + - req-e9e486fa-cfd5-423a-ab60-d9336b48921a Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:21 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:22 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -828,7 +827,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 719fedb28d8a4fa18796ee1739355ad9 + - 18e5409f5be847cfbaa5b7687aa1ad8c response: status: code: 200 @@ -839,113 +838,245 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-0fad39b4-c9b2-45e4-bf4f-0ba8ee04fb4c + - req-90c706cc-c9ca-431b-9383-35e41092dbf4 Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:22 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:23 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 18e5409f5be847cfbaa5b7687aa1ad8c + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-90c7901c-a22b-4bcf-84d5-d06514546b93 + Date: + - Tue, 25 Feb 2020 08:20:24 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:24 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -960,7 +1091,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4efc35c4aa264660bc20d75ac44729f8 + - 193518ef0b1e4df38e18a3817f958dee response: status: code: 200 @@ -971,116 +1102,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-4488a68b-9700-4a79-af2f-024f91aa23b7 + - req-a705cfdb-d90d-498e-80d5-512ca30b3145 Date: - - Tue, 14 Jan 2020 13:28:11 GMT + - Tue, 25 Feb 2020 08:20:25 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:11 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:26 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1092,7 +1223,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 4efc35c4aa264660bc20d75ac44729f8 + - 193518ef0b1e4df38e18a3817f958dee response: status: code: 200 @@ -1103,113 +1234,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-128f4916-2063-4e83-ae17-5fb94eb9d2c6 + - req-50cd1537-a18c-4c6e-a971-d1585dc05535 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:27 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:27 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1224,7 +1355,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c5aa8bdd40b74f11b3dabb569a5213f3 + - 6f248620a923497b9b7456624e648fdd response: status: code: 200 @@ -1235,116 +1366,247 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-29c698f2-b3f2-4b82-b4a6-1086d294881d + - req-4c7f8b13-03eb-453e-8c85-0230ee5cbcc0 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:28 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:29 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6f248620a923497b9b7456624e648fdd + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-6914cf23-4972-4c1e-bb24-d14c9fe797b7 + Date: + - Tue, 25 Feb 2020 08:20:29 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:30 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1356,7 +1618,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c5aa8bdd40b74f11b3dabb569a5213f3 + - 6f248620a923497b9b7456624e648fdd response: status: code: 200 @@ -1367,113 +1629,243 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-319f5cd9-5286-4302-9869-c7de173d9791 + - req-ae567abb-7d98-4d5b-a75b-abf2edeaa9f7 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:30 GMT body: encoding: ASCII-8BIT string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:31 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 6f248620a923497b9b7456624e648fdd + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-9c0deffa-ce8e-4a97-8839-72a3e495fadb + Date: + - Tue, 25 Feb 2020 08:20:31 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:32 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1488,7 +1880,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8536e03cb7ac48e59c4d92ad22d39839 + - cdfc1498132349b5ac355c5d8a642372 response: status: code: 200 @@ -1499,116 +1891,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-2ec1c82b-d3cc-4cbe-a257-568df01e059d + - req-65bb0c93-a5c2-4ab5-9ac2-f0973e675e28 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:33 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:34 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1620,7 +2012,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8536e03cb7ac48e59c4d92ad22d39839 + - cdfc1498132349b5ac355c5d8a642372 response: status: code: 200 @@ -1631,116 +2023,379 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-ade309bb-12b9-46ea-b604-7f0b7390b3b4 + - req-6a2a9eda-5980-442c-9145-1eabb4a6ed68 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:35 GMT body: encoding: ASCII-8BIT string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:36 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - cdfc1498132349b5ac355c5d8a642372 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-84731e83-1f61-4dc9-ba9f-3c701b117c53 + Date: + - Tue, 25 Feb 2020 08:20:36 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:37 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - cdfc1498132349b5ac355c5d8a642372 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-2838f4b5-83d2-4192-bacd-33ad914ce5f3 + Date: + - Tue, 25 Feb 2020 08:20:38 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": + "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:38 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers/cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers/f549eb23-42ae-4983-8ffd-2464b9997302 body: encoding: US-ASCII string: '' @@ -1752,7 +2407,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c5aa8bdd40b74f11b3dabb569a5213f3 + - 18e5409f5be847cfbaa5b7687aa1ad8c response: status: code: 200 @@ -1761,20 +2416,18 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '443' + - '261' X-Openstack-Request-Id: - - req-ef05d413-c54a-406d-92c4-f7d14ae7d912 + - req-b3cd8fb5-5d42-4157-adf9-e9b508a27de2 Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:39 GMT body: encoding: ASCII-8BIT - string: '{"router": {"status": "ACTIVE", "external_gateway_info": {"network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}]}, - "name": "EmsRefreshSpec-Router", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT + string: '{"router": {"status": "ACTIVE", "external_gateway_info": null, "name": + "DisconnectedRouter", "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "distributed": false, "routes": [], "ha": false, "id": "f549eb23-42ae-4983-8ffd-2464b9997302"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:39 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1792,68 +2445,68 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:12 GMT + - Tue, 25 Feb 2020 08:20:40 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a56e2ac4-ab35-4f27-9845-c30bfdcfd8ef + - req-66c12b9d-dc7c-46f6-afb5-7f0ca209c17e Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:12.654791", "expires": - "2020-01-14T14:28:12Z", "id": "b6aa1d468e6c439d92d16c32bd54aa32", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["NdjHAlBlSui7bEVVY8xkow"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:20:40.208974", "expires": + "2020-02-25T09:20:40Z", "id": "4c973f0b088d4934a14de7773bfd63e7", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["kjPXJ2wFTDel14SVuAPYCg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:12 GMT -recorded_with: VCR 5.0.0 + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:20:40 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_stack_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_stack_targeted_refresh.yml index f0323beec..7615397ed 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_stack_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_stack_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:26 GMT + - Tue, 25 Feb 2020 08:25:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d8b491e3-d384-49f3-876d-12a4bc0a0a3c + - req-5d8a0526-71e0-4123-81da-b4c2d413c0f6 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:26.834428", "expires": - "2020-01-14T14:27:26Z", "id": "f3637a3a5291422e86d9bda62e8f03b0", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["4dwP1wM3TdStyRMiFzDpmw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:25.633429", "expires": + "2020-02-25T09:25:25Z", "id": "189a3e22eb724b4e8b30f4f1c40163ed", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["Lw8IB9nfSXm84IXvjJFJKg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:25 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f3637a3a5291422e86d9bda62e8f03b0 + - 189a3e22eb724b4e8b30f4f1c40163ed response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:26 GMT + - Tue, 25 Feb 2020 08:25:26 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,8 +114,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:26 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:27 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -133,70 +133,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:26 GMT + - Tue, 25 Feb 2020 08:25:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e77403b9-3045-4f1a-a4ad-3accca2cfbb6 + - req-8d283b44-2d54-4ed4-b429-629b6b16eef3 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:26.946837", "expires": - "2020-01-14T14:27:26Z", "id": "b3260ff0a8ed45298062e69e2d8040a8", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["yR8hFwf0T_GLwGXwk1i3Xw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:27.721331", "expires": + "2020-02-25T09:25:27Z", "id": "84f821af6c754599bbcf19f1819ff316", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["GIWrghS-TaCbiNT8qnMOMA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:26 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:27 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -214,13 +214,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:26 GMT + - Tue, 25 Feb 2020 08:25:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-6b9370a2-595c-4e4a-b890-8ddc787a9314 + - req-ed5a9f9a-5a33-4fac-afa0-db7a8e35497b Content-Length: - '370' Connection: @@ -229,13 +229,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:27.012974", "expires": - "2020-01-14T14:27:27Z", "id": "3de7562365a240e38aceadf46d243a22", "audit_ids": - ["CyBNc_XpT1-ZOYm9DMz3Zw"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:28.614287", "expires": + "2020-02-25T09:25:28Z", "id": "0e764d18fe014750b89c126e48cd34b8", "audit_ids": + ["ohY66VByRxumqvkB-uU7ow"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:28 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -250,20 +250,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3de7562365a240e38aceadf46d243a22 + - 0e764d18fe014750b89c126e48cd34b8 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-07deff4c-8f62-4c9a-94ab-614ffb64cf77 + - req-b2c7c143-8491-4d01-8024-6f29be55fe8c Content-Length: - '500' Connection: @@ -272,20 +272,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -297,75 +297,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-5255fa18-8edc-4f4c-a506-35a0fc5b959c + - req-359e1b11-305f-43ca-8fe7-061b753fb0cb Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:27.115243", "expires": - "2020-01-14T14:27:27Z", "id": "5926514c948b4a39a1a13ac7865ba680", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["2w4WXlaEQiKw0pMg8BWeeg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:30.873957", "expires": + "2020-02-25T09:25:30Z", "id": "116a2584c71e4b108579342642d7e7c5", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["47C6sJCBTP6evl7yyf2cLA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:31 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -377,69 +377,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0add296a-b257-4e0b-afe8-135211ad303d + - req-6f4b5bf6-6274-4cf6-b534-f072d40b83c5 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:27.204391", "expires": - "2020-01-14T14:27:27Z", "id": "1c5dd494dbc44c329ad0552f13a1c135", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["Gepvz9XtSQ6n_UBDZ9sUnw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:32.214365", "expires": + "2020-02-25T09:25:32Z", "id": "520b4f75a3d14365b1d6568d0be14783", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["9Uv6Bhx_T7G7Ce50KfrHgw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:32 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -457,72 +457,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:32 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-98450de8-9cb6-4634-8535-931c44a26db7 + - req-07bbd494-c093-4f4a-bc25-7a079326a10b Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:27.294418", "expires": - "2020-01-14T14:27:27Z", "id": "a6251c5b19b5447bb848d208703a0ffe", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["eZ8O0nv_Rr-kAmqShaNGbA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:32.911373", "expires": + "2020-02-25T09:25:32Z", "id": "60f3fb442f394fbe8fde63d69ab64295", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["0Kh7D1_HRFOeUZ3TBN9Y_g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:33 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -534,7 +534,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 5926514c948b4a39a1a13ac7865ba680 + - 84f821af6c754599bbcf19f1819ff316 response: status: code: 200 @@ -545,17 +545,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-461a1907-8be4-4c54-a33f-f8a91a460135 + - req-c9a196bf-9bc8-4a8c-a7be-d5adb7fb6d0f Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:33 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:33 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -567,7 +567,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 1c5dd494dbc44c329ad0552f13a1c135 + - 116a2584c71e4b108579342642d7e7c5 response: status: code: 200 @@ -578,17 +578,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-0cdcc58b-018a-494f-baf7-92bc4761e838 + - req-7d9d6170-e558-4fe7-9f0c-08a84d04a2a5 Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:34 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:34 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -600,7 +600,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b3260ff0a8ed45298062e69e2d8040a8 + - 520b4f75a3d14365b1d6568d0be14783 response: status: code: 200 @@ -611,17 +611,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-962ef472-4898-465c-b918-737a371519b9 + - req-7407f3f7-c9df-43bc-8d80-8e854cafbdd6 Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:35 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:35 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&show_nested=true body: encoding: US-ASCII string: '' @@ -633,7 +633,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -642,11 +642,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2562' + - '2556' X-Openstack-Request-Id: - - req-411cc24e-d96f-46a9-adbf-6be2d72d9c37 + - req-04fd927e-c6cb-439f-a4a1-4dc09057769f Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:36 GMT body: encoding: ASCII-8BIT string: '{"stacks": [{"description": "Heat WordPress template to support F20, @@ -655,35 +655,35 @@ http_interactions: a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": - "stack3", "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "tags": - null, "creation_time": "2020-01-12T16:05:17", "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack3", "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "tags": + null, "creation_time": "2020-02-24T12:09:33", "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac"}, {"description": + "CREATE_COMPLETE", "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack2", "stack_user_project_id": - "2b6cb27244524adabbd98107830e7368", "tags": null, "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "2a9280e6b8c34aacba20fb99d5edca9e", "tags": null, "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "81538171-f98c-4384-b077-62a781b33faf"}, {"description": + "CREATE_COMPLETE", "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726"}, {"description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "stack_status_reason": "Stack CREATE completed successfully", "stack_name": "stack1", "stack_user_project_id": - "031ad7dee8ab41e4b3db5179aa0660ad", "tags": null, "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "8c62679f01c64a449c731ebf7553a7ca", "tags": null, "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "updated_time": null, "stack_owner": null, "stack_status": - "CREATE_COMPLETE", "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + "CREATE_COMPLETE", "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:36 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks?limit=1000&marker=eca4b0d4-c342-4b89-94bb-fe66f001460b&show_nested=true + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks?limit=1000&marker=a2865569-94f8-42d0-84c3-4b59dd4dc745&show_nested=true body: encoding: US-ASCII string: '' @@ -695,7 +695,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -706,17 +706,17 @@ http_interactions: Content-Length: - '14' X-Openstack-Request-Id: - - req-332f144c-a207-49df-adf5-10465e1241ac + - req-77c8fc67-5937-438f-a129-c17a60832c28 Date: - - Tue, 14 Jan 2020 13:27:27 GMT + - Tue, 25 Feb 2020 08:25:36 GMT body: encoding: ASCII-8BIT string: '{"stacks": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:27 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:37 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e body: encoding: US-ASCII string: '' @@ -728,7 +728,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -737,11 +737,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-bde9a007-fe37-47b3-a196-972cab598c15 + - req-646663bc-12d9-4934-9450-a2cb68c1800e Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:38 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -750,28 +750,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack3", - "stack_user_project_id": "e0e9249f2c6f4c0bac48f512b5cd4c27", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:17", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack3/6a3705b7-5897-47b9-b04c-ac2cb5d408ac", + "stack_user_project_id": "cfdc915feef14370b5964a3e55d682cf", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:33", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack3/f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "OS::stack_name": - "stack3", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "OS::stack_name": + "stack3", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "6a3705b7-5897-47b9-b04c-ac2cb5d408ac", "outputs": [{"output_value": - "http://192.168.1.5/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f2e9f94b-6831-4c97-abdc-5e940dc95e1e", "outputs": [{"output_value": + "http://192.168.0.5/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:38 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726 body: encoding: US-ASCII string: '' @@ -783,7 +783,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -792,11 +792,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-afd59da0-f47c-4dfb-b9ae-bd9c244d8dfd + - req-8f575b3f-cf54-4e5c-a024-8a8b468baff0 Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:39 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -805,28 +805,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack2", - "stack_user_project_id": "2b6cb27244524adabbd98107830e7368", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:16", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack2/81538171-f98c-4384-b077-62a781b33faf", + "stack_user_project_id": "2a9280e6b8c34aacba20fb99d5edca9e", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:30", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack2/f3aa1611-331f-4fac-b709-5bab7b3c4726", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "81538171-f98c-4384-b077-62a781b33faf", "OS::stack_name": - "stack2", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "OS::stack_name": + "stack2", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "81538171-f98c-4384-b077-62a781b33faf", "outputs": [{"output_value": - "http://192.168.1.4/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "f3aa1611-331f-4fac-b709-5bab7b3c4726", "outputs": [{"output_value": + "http://192.168.0.4/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:39 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745 body: encoding: US-ASCII string: '' @@ -838,7 +838,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -847,11 +847,11 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '1865' + - '1863' X-Openstack-Request-Id: - - req-06031024-867d-42aa-a2a1-2bc4ba1d8ea6 + - req-14705b9c-330c-4f95-acfe-8ee65f70fb5e Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:40 GMT body: encoding: ASCII-8BIT string: '{"stack": {"disable_rollback": true, "description": "Heat WordPress @@ -860,28 +860,28 @@ http_interactions: software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n", "parent": null, "tags": null, "stack_name": "stack1", - "stack_user_project_id": "031ad7dee8ab41e4b3db5179aa0660ad", "stack_status_reason": - "Stack CREATE completed successfully", "creation_time": "2020-01-12T16:05:13", - "links": [{"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "stack_user_project_id": "8c62679f01c64a449c731ebf7553a7ca", "stack_status_reason": + "Stack CREATE completed successfully", "creation_time": "2020-02-24T12:09:28", + "links": [{"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "self"}], "capabilities": [], "notification_topics": [], "updated_time": null, "timeout_mins": null, "stack_status": "CREATE_COMPLETE", "stack_owner": - null, "parameters": {"OS::project_id": "8eb4b49207904f6eb33283732571bc0e", - "OS::stack_id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "OS::stack_name": - "stack1", "instance_type": "m1.tiny", "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + null, "parameters": {"OS::project_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "OS::stack_id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "OS::stack_name": + "stack1", "instance_type": "m1.tiny", "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "db_password": "******", "image_id": "EmsRefreshSpec-Image", "db_name": "wordpress", "db_username": "******", "db_root_password": "******", "key_name": "EmsRefreshSpec-KeyPair"}, - "id": "eca4b0d4-c342-4b89-94bb-fe66f001460b", "outputs": [{"output_value": - "http://192.168.1.3/wordpress", "description": "URL for Wordpress wiki", "output_key": + "id": "a2865569-94f8-42d0-84c3-4b59dd4dc745", "outputs": [{"output_value": + "http://192.168.0.3/wordpress", "description": "URL for Wordpress wiki", "output_key": "WebsiteURL"}], "template_description": "Heat WordPress template to support F20, using only Heat OpenStack-native resource types, and without the requirement for heat-cfntools in the image. WordPress is web software you can use to create a beautiful website or blog. This template installs a single-instance WordPress deployment using a local MySQL database to store the data.\n"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:40 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources body: encoding: US-ASCII string: '' @@ -893,7 +893,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -902,23 +902,23 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '702' + - '698' X-Openstack-Request-Id: - - req-b45cf807-28eb-49cc-a83f-423e12808c7d + - req-4e56cb2d-b594-41ab-839b-c178373803ff Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:41 GMT body: encoding: ASCII-8BIT string: '{"resources": [{"resource_name": "wordpress_instance", "links": [{"href": - "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/resources/wordpress_instance", - "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b", + "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/resources/wordpress_instance", + "rel": "self"}, {"href": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745", "rel": "stack"}], "logical_resource_id": "wordpress_instance", "creation_time": - "2020-01-12T16:05:14", "resource_status": "CREATE_COMPLETE", "updated_time": - "2020-01-12T16:05:14", "required_by": [], "resource_status_reason": "state - changed", "physical_resource_id": "5c489d02-0165-4746-9568-3f1a616b89f1", + "2020-02-24T12:09:28", "resource_status": "CREATE_COMPLETE", "updated_time": + "2020-02-24T12:09:28", "required_by": [], "resource_status_reason": "state + changed", "physical_resource_id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "resource_type": "OS::Nova::Server"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:41 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -936,73 +936,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:42 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b3ce4e53-8eb7-4afd-a81d-d7bdffb6f27e + - req-16ae9a22-9e1d-4c00-b0ec-0d7b2338494a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:28.930673", "expires": - "2020-01-14T14:27:28Z", "id": "4e4cfc569b054f75a9437394e6fd3647", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["9XIonURIRoCYe5p49tlT6Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:42.187027", "expires": + "2020-02-25T09:25:42Z", "id": "bf41fc64fe4646fc874738c7188d5fa4", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["OUD9LJZFTbG1ie3BNbA4uA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:42 GMT - request: method: get - uri: http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e/stacks/stack1/eca4b0d4-c342-4b89-94bb-fe66f001460b/template + uri: http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9/stacks/stack1/a2865569-94f8-42d0-84c3-4b59dd4dc745/template body: encoding: US-ASCII string: '' @@ -1014,7 +1014,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - a6251c5b19b5447bb848d208703a0ffe + - 60f3fb442f394fbe8fde63d69ab64295 response: status: code: 200 @@ -1025,9 +1025,9 @@ http_interactions: Content-Length: - '4249' X-Openstack-Request-Id: - - req-dd039782-92c2-46d2-aa8a-fd13e644c6c7 + - req-7dc14f6e-d69e-43f6-a90d-0e32440a76b3 Date: - - Tue, 14 Jan 2020 13:27:28 GMT + - Tue, 25 Feb 2020 08:25:43 GMT body: encoding: ASCII-8BIT string: '{"outputs": {"WebsiteURL": {"description": "URL for Wordpress wiki", @@ -1083,11 +1083,11 @@ http_interactions: /etc/wordpress/wp-config.php\nsed -i s/password_here/db_password/ /etc/wordpress/wp-config.php\n\nsystemctl start httpd.service\n"}}, "flavor": {"get_param": "instance_type"}, "networks": [{"uuid": {"get_param": "network_id"}}]}}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:28 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/5c489d02-0165-4746-9568-3f1a616b89f1 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f body: encoding: US-ASCII string: '' @@ -1099,7 +1099,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f3637a3a5291422e86d9bda62e8f03b0 + - 189a3e22eb724b4e8b30f4f1c40163ed X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1110,37 +1110,37 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1795' + - '1820' X-Compute-Request-Id: - - req-a9db66ff-5c3e-4b95-bc87-fafc5a23362f + - req-cb061560-b707-474f-af02-ab122416601f Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:44 GMT body: encoding: ASCII-8BIT - string: '{"server": {"status": "SHUTOFF", "updated": "2020-01-13T14:50:13Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:32:9d:1b", "version": 4, "addr": "192.168.1.3", - "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/5c489d02-0165-4746-9568-3f1a616b89f1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/5c489d02-0165-4746-9568-3f1a616b89f1", + string: '{"server": {"status": "ACTIVE", "updated": "2020-02-24T12:09:48Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:e6:f0:9d", "version": 4, "addr": "192.168.0.3", + "OS-EXT-IPS:type": "fixed"}]}, "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/c6a48c9a-005d-42dc-b30d-787925b7e99f", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": - "stopped", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": - "2020-01-12T16:05:25.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "bookmark"}]}, "id": "5c489d02-0165-4746-9568-3f1a616b89f1", "security_groups": + "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000001", "OS-SRV-USG:launched_at": + "2020-02-24T12:09:47.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "1", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "bookmark"}]}, "id": "c6a48c9a-005d-42dc-b30d-787925b7e99f", "security_groups": [{"name": "default"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": - "nova", "user_id": "429846f1f4c9494dab287d7d4554e465", "name": "stack1-wordpress_instance-xhskaxkrwj7l", - "created": "2020-01-12T16:05:16Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "nova", "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "name": "stack1-wordpress_instance-mlbps434huur", + "created": "2020-02-24T12:09:30Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [], - "accessIPv4": "", "accessIPv6": "", "OS-EXT-STS:power_state": 4, "config_drive": - "", "metadata": {}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": + 1, "config_drive": "", "metadata": {}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:44 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/1 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/1 body: encoding: US-ASCII string: '' @@ -1152,7 +1152,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f3637a3a5291422e86d9bda62e8f03b0 + - 189a3e22eb724b4e8b30f4f1c40163ed X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1163,20 +1163,20 @@ http_interactions: Content-Type: - application/json Content-Length: - - '422' + - '418' X-Compute-Request-Id: - - req-df37675e-9cc9-45c4-866c-23215caee20f + - req-54ca316a-2f2e-4b36-b624-5bad747805cb Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:45 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/1", + string: '{"flavor": {"name": "m1.tiny", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/1", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/1", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": "", "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": 0, "disk": 1, "id": "1"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:45 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1194,70 +1194,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:46 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-68619aa9-cc8e-46f9-aa50-d69795278f5a + - req-e5580de4-8350-4bcc-9d1c-c5170e05113d Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:29.613558", "expires": - "2020-01-14T14:27:29Z", "id": "2e2811dc28254bdc816791a330e424d5", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["G8HzRA0jQAe-p8-oDJB7vQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:47.034279", "expires": + "2020-02-25T09:25:47Z", "id": "7218f41f40a94998b0d13a7e9e777ea7", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["FXRgVy-OR5OzPDvUnXCk5g"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:47 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -1272,20 +1272,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2e2811dc28254bdc816791a330e424d5 + - 7218f41f40a94998b0d13a7e9e777ea7 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:48 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f155d0e1-9508-4ea2-b3cb-d2d156e95c91 + - req-4ef42ed9-64d2-4577-8546-4b402bb3b30f Content-Length: - '500' Connection: @@ -1294,14 +1294,14 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:48 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1319,76 +1319,76 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:49 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1be409b1-1e5e-4c32-8543-8c8373a12846 + - req-746d818d-2ac1-4643-9530-bca583a5a29b Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:29.738844", "expires": - "2020-01-14T14:27:29Z", "id": "8683c2b24714436a930ecbcbd49466a4", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["KzpxpJgVT0Wh31ZO4M3fgw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:49.629383", "expires": + "2020-02-25T09:25:49Z", "id": "a390aee06b5a47a98db5de0b90345fb9", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["QyFUD85oT3q-jXZ9plhDvQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:49 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1400,75 +1400,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:51 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0c0d5abf-76e3-4ba8-9e0a-7cc6356022b9 + - req-97df0e4f-e57b-4957-b1d2-a742028fd79f Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:29.842370", "expires": - "2020-01-14T14:27:29Z", "id": "ac22b7614b47445aa40b0416983f2b53", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["s5JEOsu0S-usMEO9Al84xA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:51.206655", "expires": + "2020-02-25T09:25:51Z", "id": "789f8966cf384b42a5a3686dcfb7c06f", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["dLlFLUk3TvKJSauPKnOePg"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:51 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1480,69 +1480,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:52 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-8cd2a153-327c-4aff-ba84-f6140ffff702 + - req-75283229-b40b-4395-bb7a-4a2774c5132e Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:29.935880", "expires": - "2020-01-14T14:27:29Z", "id": "2744ef2d1f074a708edadc0610ab751e", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["4w4_JEWxQRudiT7OfFp-Jg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:52.320587", "expires": + "2020-02-25T09:25:52Z", "id": "4b9edebb9e7d4963b020db1e5fb96e57", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["VPHb-vvPT2-ioEyMPqq2fA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:29 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:52 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1560,69 +1560,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:29 GMT + - Tue, 25 Feb 2020 08:25:53 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-56205036-64a5-4ff5-9ee6-126d6dab553b + - req-dfd24547-24cd-4b38-ba95-cf061ef239f4 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:30.023479", "expires": - "2020-01-14T14:27:30Z", "id": "79311fbf7c4e4f2f976bd483a19b3727", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["p1StbJwbQNOrDQMOadLWGw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:25:53.630306", "expires": + "2020-02-25T09:25:53Z", "id": "41266915f285424497fdf55d820b800a", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["j7fK5B0mTma4qTP3ksUR4g"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:53 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1637,7 +1637,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ac22b7614b47445aa40b0416983f2b53 + - a390aee06b5a47a98db5de0b90345fb9 response: status: code: 200 @@ -1648,116 +1648,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-2b50c5c8-a598-4c10-b44b-ed9f5b00b651 + - req-2302b09a-f5d2-47b0-8915-cfd6c97e8abc Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:25:54 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:54 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1769,7 +1769,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - ac22b7614b47445aa40b0416983f2b53 + - a390aee06b5a47a98db5de0b90345fb9 response: status: code: 200 @@ -1780,113 +1780,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-5f93cd14-4bc0-40a0-ab07-10100b3d169d + - req-1d46e439-c6f7-4b94-a7ce-8e33d8208d33 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:25:55 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:56 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1901,7 +1901,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2744ef2d1f074a708edadc0610ab751e + - 789f8966cf384b42a5a3686dcfb7c06f response: status: code: 200 @@ -1912,116 +1912,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-ac3cdb60-f83b-41a3-8177-e08e3771cf84 + - req-bd461486-e0f5-44a3-a976-b4963327ec39 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:25:57 GMT body: encoding: ASCII-8BIT string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:57 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -2033,7 +2032,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2744ef2d1f074a708edadc0610ab751e + - 789f8966cf384b42a5a3686dcfb7c06f response: status: code: 200 @@ -2044,116 +2043,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-af37e61c-4a0f-4236-9965-21426f482680 + - req-9b5db361-0e0d-4893-b12c-042da008995e Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:25:58 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:25:58 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2165,7 +2164,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8683c2b24714436a930ecbcbd49466a4 + - 789f8966cf384b42a5a3686dcfb7c06f response: status: code: 200 @@ -2176,116 +2175,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-5def84dd-2207-45bc-910f-a4e1068e5c9d + - req-bcd69f35-6c04-4007-be15-c8d9af5a44f3 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:25:59 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:00 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -2297,7 +2296,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8683c2b24714436a930ecbcbd49466a4 + - 4b9edebb9e7d4963b020db1e5fb96e57 response: status: code: 200 @@ -2308,116 +2307,247 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-ef320a83-ac8d-41a5-949c-1875d1983fca + - req-bd880dca-72f7-4fd3-91cb-ccf583e268a7 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:26:01 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:01 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 4b9edebb9e7d4963b020db1e5fb96e57 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-4b08b9ef-3569-419f-863a-20e0fa2c7731 + Date: + - Tue, 25 Feb 2020 08:26:02 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:03 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2429,7 +2559,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79311fbf7c4e4f2f976bd483a19b3727 + - 4b9edebb9e7d4963b020db1e5fb96e57 response: status: code: 200 @@ -2440,116 +2570,248 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-df6ac0db-71d0-4ea3-99dc-94344aa329cc + - req-e373851d-eee0-4e83-b19b-2b5798026ad8 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:26:04 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:05 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 41266915f285424497fdf55d820b800a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-eb8c0ed6-d4b2-42cd-afce-91f5a95e233c + Date: + - Tue, 25 Feb 2020 08:26:05 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:06 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2561,7 +2823,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 79311fbf7c4e4f2f976bd483a19b3727 + - 41266915f285424497fdf55d820b800a response: status: code: 200 @@ -2572,113 +2834,639 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-9b1807a9-990b-4b49-b32c-bf1511c0ed2b + - req-3dcb8b43-5eab-4a9c-ab12-3b57f0450211 Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:26:07 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:08 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 41266915f285424497fdf55d820b800a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-65e3c49b-aa76-4b93-8da7-f778100f4c9a + Date: + - Tue, 25 Feb 2020 08:26:08 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:09 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 41266915f285424497fdf55d820b800a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-5e8eb63a-508f-4e42-9290-713b23fff520 + Date: + - Tue, 25 Feb 2020 08:26:10 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:10 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 41266915f285424497fdf55d820b800a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-021cbc0a-24a0-48c5-b405-25e6703e86ea + Date: + - Tue, 25 Feb 2020 08:26:11 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:11 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - 41266915f285424497fdf55d820b800a + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-a4110815-cb87-49d7-b81a-dea4601bac94 + Date: + - Tue, 25 Feb 2020 08:26:12 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": + false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.20.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": + "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", + "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:12 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2696,68 +3484,68 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:30 GMT + - Tue, 25 Feb 2020 08:26:13 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-e2b9b13b-1d18-4567-a196-60b5de8f86e9 + - req-edff874c-e854-4f8f-b0d0-a29dd5ff7a94 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:30.925571", "expires": - "2020-01-14T14:27:30Z", "id": "c8f55253cce64bcd9dd8885dc68f5568", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["f-Iq5tlASSuRHYV1yPM77w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:26:13.350459", "expires": + "2020-02-25T09:26:13Z", "id": "da156be7686c48be8f8513ccd1908ea9", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["JNbpknKARjGKrSHSXgdivg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:30 GMT -recorded_with: VCR 5.0.0 + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:26:13 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_tenant_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_tenant_targeted_refresh.yml index 291412d89..5b84b5091 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_tenant_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_tenant_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:57 GMT + - Tue, 25 Feb 2020 08:16:20 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-25026187-651c-4031-b5d2-8ed21fbd9873 + - req-1c512c2a-b9c5-423b-82f5-0032af993e7d Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.063964", "expires": - "2020-01-14T14:27:58Z", "id": "2438df6fc0c84c46b32f932d1543d6f3", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["DPTOGaAnRDGujMt8cF_AXQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:20.305751", "expires": + "2020-02-25T09:16:20Z", "id": "dbf5f25448834c50984b9d382e757e4a", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["wkGV2T2lRU2PuqO8qmAsig"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:20 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2438df6fc0c84c46b32f932d1543d6f3 + - dbf5f25448834c50984b9d382e757e4a response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:21 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,8 +114,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:21 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -133,70 +133,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:21 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-06240676-5270-4204-a172-0f57d76184d8 + - req-09c9e942-8d39-417f-bf15-295f130479da Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.170893", "expires": - "2020-01-14T14:27:58Z", "id": "f398b4b8525b4d1383d2f96db9c2cf13", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["yDsGMtsxS0WLRAhpFH6mJA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:21.733476", "expires": + "2020-02-25T09:16:21Z", "id": "fdb555a1248c4f829726dca1dd789c41", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["wsTxfzeoTXqkHkU95HHepA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:21 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -211,20 +211,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f398b4b8525b4d1383d2f96db9c2cf13 + - fdb555a1248c4f829726dca1dd789c41 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-4a16126d-127e-4080-8cf5-47f28409002f + - req-07b78970-9ca3-43c0-a824-5db4cbfcb309 Content-Length: - '500' Connection: @@ -233,14 +233,14 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:22 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -258,70 +258,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-7c225b42-2c29-4731-8f44-c0e44b772798 + - req-1a2abb1f-75a2-4904-b8b3-bb9c44622f65 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.366451", "expires": - "2020-01-14T14:27:58Z", "id": "1b18e1dc60ed467e9b849e2778f2cffb", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["1Csf-ylyRHqYJ3cX00myGA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:23.787332", "expires": + "2020-02-25T09:16:23Z", "id": "6e230a5c584f4ae2b9fbcca489a28c93", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["KhLI1RndQMiV9tczlBerYQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:23 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -339,70 +339,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:24 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-4e8c4d37-b7bc-4fd3-a835-24fb392d2e35 + - req-91056f91-f633-4231-b5a5-bad363fbf56a Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.455043", "expires": - "2020-01-14T14:27:58Z", "id": "050e2dcc81b54bc7a452b85baa0bd37f", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["roOGPsroQAyXTdo290TM4w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:24.961831", "expires": + "2020-02-25T09:16:24Z", "id": "fdd46b732fe142499f6a3aa17d1e1cfc", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["6uwkspsERca8xr2ycIbFZA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:25 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -420,70 +420,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-200535a0-1936-4a45-a3ed-f0ddcefefc98 + - req-ce4934ca-e582-40d4-9ae1-c5765ab0a435 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.560403", "expires": - "2020-01-14T14:27:58Z", "id": "8823c739438448eebc9ee7e177ad6edb", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["ZMZs0YRgRmOmMpmKZ1dRBA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:25.771903", "expires": + "2020-02-25T09:16:25Z", "id": "a653efdde7574d7290340cd1dd5ae05c", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["RoeX4xWjTK6lxgAqgR0hfg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:26 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -501,13 +501,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-5b0b0438-1b1e-4a8c-ba70-3509d5b0026e + - req-1001c0f3-4dbe-4790-8aef-a8dfbf34e491 Content-Length: - '370' Connection: @@ -516,13 +516,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.632103", "expires": - "2020-01-14T14:27:58Z", "id": "125abaf6d1b64742beda18a987877308", "audit_ids": - ["IMKv8CwhSBSlDcmYFd3X8A"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:27.035563", "expires": + "2020-02-25T09:16:27Z", "id": "0892a48fc5e9485dbe89f1e60afca7f7", "audit_ids": + ["N0VRd8abStWSylTe4fW-Mg"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:27 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -537,20 +537,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 125abaf6d1b64742beda18a987877308 + - '0892a48fc5e9485dbe89f1e60afca7f7' response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-49cb136e-5b88-4c49-a508-7a0bef68c14d + - req-1a5384ed-8721-4c47-acff-a66c6395e8fa Content-Length: - '500' Connection: @@ -559,20 +559,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:28 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -584,75 +584,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:28 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-771838ca-d7c3-4420-a5db-8b5baba90527 + - req-4ac1ba0b-f10f-46bc-8e03-55e7c1c5902c Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.743975", "expires": - "2020-01-14T14:27:58Z", "id": "519aadf57a814f2283bb286d0085e33d", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["0TIdWPUsSt2DBF7SQjtS-A"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:28.903860", "expires": + "2020-02-25T09:16:28Z", "id": "f42daca920ab4a34b8445773d7e87d83", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["dsJk8_SbRUCvs-G7Al-WxA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -664,69 +664,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:29 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3a2a48f1-d717-4f8b-b157-8ac56013cca7 + - req-c68c4d47-7fc2-453c-8b6b-8550e244e701 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.843156", "expires": - "2020-01-14T14:27:58Z", "id": "8c98c5adcf084702af8f545117996ff8", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["dyAhq2ZORPejA9RFIFb2Sg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:29.759953", "expires": + "2020-02-25T09:16:29Z", "id": "8a4ece7bf2df4e269241518b666466b1", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["7o5ndzthSBWedPunoUADoQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:29 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -744,69 +744,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:58 GMT + - Tue, 25 Feb 2020 08:16:30 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0b9c8d3a-b05e-499c-a8c8-bcde17832269 + - req-5f32e397-2b79-45b3-af09-120518c38c58 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:58.947186", "expires": - "2020-01-14T14:27:58Z", "id": "948bd9ca9c104643bd2e7f50bac0d129", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["a_dM4F4bTUuP-gKKyIN4ag"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:30.862403", "expires": + "2020-02-25T09:16:30Z", "id": "525ad246fc1c4075b08acf0f1b2dbf9a", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["gNbI-XQlTOKa68_6Dk0T_A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:58 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:31 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -821,7 +821,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 519aadf57a814f2283bb286d0085e33d + - a653efdde7574d7290340cd1dd5ae05c response: status: code: 200 @@ -832,115 +832,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-606a5375-56a0-4f7d-8dc7-0c907e6f7cc9 + - req-ca379c93-a898-4a6d-85a5-ff6b7646c679 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:31 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:32 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -952,7 +953,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 519aadf57a814f2283bb286d0085e33d + - a653efdde7574d7290340cd1dd5ae05c response: status: code: 200 @@ -963,112 +964,112 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-c6ba942a-bd32-4dd7-91da-7b15220b7881 + - req-e34aef40-dc0e-462e-a463-8c4b88b111c1 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:32 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:33 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1083,7 +1084,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8c98c5adcf084702af8f545117996ff8 + - f42daca920ab4a34b8445773d7e87d83 response: status: code: 200 @@ -1094,115 +1095,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-180b94de-724a-408e-b5ad-6948d5b38f39 + - req-ebf7d6e8-98ae-4317-b030-eee5e684c4bb Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:34 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:34 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1214,7 +1216,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8c98c5adcf084702af8f545117996ff8 + - f42daca920ab4a34b8445773d7e87d83 response: status: code: 200 @@ -1225,112 +1227,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-8745a2ad-c09e-46c0-a4c4-f2e126e7e193 + - req-0687de70-2f95-463c-af08-9341276d58f2 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:35 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:36 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1345,7 +1348,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8823c739438448eebc9ee7e177ad6edb + - 8a4ece7bf2df4e269241518b666466b1 response: status: code: 200 @@ -1356,248 +1359,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-82ae021c-d907-44c6-bb39-0320decce295 + - req-b4e453fb-8fa5-4781-9810-97e191238b77 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:37 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.8", "end": "192.168.3.10"}, {"start": - "192.168.3.2", "end": "192.168.3.6"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT -- request: - method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - fog-core/1.45.0 - Content-Type: - - application/json - Accept: - - application/json - X-Auth-Token: - - 8823c739438448eebc9ee7e177ad6edb - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json; charset=UTF-8 - Content-Length: - - '8299' - X-Openstack-Request-Id: - - req-6522a71d-5670-41f7-a8a4-938c7e0763ff - Date: - - Tue, 14 Jan 2020 13:27:59 GMT - body: - encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": - "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:38 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1609,7 +1480,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 948bd9ca9c104643bd2e7f50bac0d129 + - 8a4ece7bf2df4e269241518b666466b1 response: status: code: 200 @@ -1620,116 +1491,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-974bd982-4b82-435a-9e9f-cac0fe87b6a4 + - req-fc31606e-13a9-4d34-a341-2f87e7d9c85a Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:39 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", "enable_dhcp": - true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.51.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.51.2", "end": "192.168.51.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.51.0/24", - "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", - "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.30.0/24", "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": - true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", - "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-IsolatedSubnetPrivate_2", "enable_dhcp": true, "network_id": - "678bb925-5f9c-4718-874c-ac592109544c", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.50.2", "end": "192.168.50.2"}, {"start": - "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.0.8", "end": "192.168.0.8"}, - {"start": "192.168.0.3", "end": "192.168.0.5"}], "host_routes": [], "ip_version": - 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:39 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=be64e82a-7735-4ae3-a390-b0fb6441c184 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -1741,7 +1612,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 948bd9ca9c104643bd2e7f50bac0d129 + - 525ad246fc1c4075b08acf0f1b2dbf9a response: status: code: 200 @@ -1752,115 +1623,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-1beedd27-489b-4c25-b4fb-f2751052829d + - req-997d8da3-8dd4-49fa-a943-65108dbfd182 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:40 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:41 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1872,7 +1743,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 948bd9ca9c104643bd2e7f50bac0d129 + - 525ad246fc1c4075b08acf0f1b2dbf9a response: status: code: 200 @@ -1883,112 +1754,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-41915288-4bd0-41ff-a96f-83330502627f + - req-a330dc1c-5c19-4674-96ce-897757ba4c61 Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:42 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:42 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2006,68 +1878,68 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:59 GMT + - Tue, 25 Feb 2020 08:16:43 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-6660c24a-a5b8-4c31-b83c-52acbb15f15d + - req-0cf6ed91-53d0-4c03-ac82-704739eacb66 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:59.768361", "expires": - "2020-01-14T14:27:59Z", "id": "73f64bed2ac14266accee201a5282c73", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["YQqhDX5hTaylhjRjmCh0dw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:43.350484", "expires": + "2020-02-25T09:16:43Z", "id": "30158dc9126846dc8330133e262fc865", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["s7EzqpXhRgSUhgDqNsOVVg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:59 GMT -recorded_with: VCR 5.0.0 + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:43 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_vm_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_vm_targeted_refresh.yml index fb9c5312b..412e8e5d9 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_vm_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_vm_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:00 GMT + - Tue, 25 Feb 2020 08:17:14 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-27b1dddb-6e33-4b89-b39d-4292676ca622 + - req-97b5b601-b942-4494-a9d2-e92a09b877cf Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:00.574904", "expires": - "2020-01-14T14:28:00Z", "id": "217bc4ae91f54725994fc4495963f333", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["icTTcIaeQyiZ3HrUXXjWvQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:14.541345", "expires": + "2020-02-25T09:17:14Z", "id": "1cbd33066e7246afba3c4a5efdbc4ff8", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["vwE8PF4QQc6CE-czhZlkrg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:00 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:14 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:00 GMT + - Tue, 25 Feb 2020 08:17:15 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,11 +114,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:00 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:16 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d body: encoding: US-ASCII string: '' @@ -130,7 +130,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -141,42 +141,42 @@ http_interactions: Content-Type: - application/json Content-Length: - - '2140' + - '2152' X-Compute-Request-Id: - - req-307f8bd2-ad4c-43df-82ec-797e44d37401 + - req-b9096dd5-029e-4739-9bb0-811d0cd735f7 Date: - - Tue, 14 Jan 2020 13:28:00 GMT + - Tue, 25 Feb 2020 08:17:17 GMT body: encoding: ASCII-8BIT - string: '{"server": {"status": "ACTIVE", "updated": "2020-01-13T14:54:40Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", "version": 4, "addr": "192.168.1.6", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", + string: '{"server": {"status": "ACTIVE", "updated": "2020-02-24T12:10:58Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": "192.168.1.3", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": "172.16.17.4", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000004", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:00.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:10:37.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "da40eae5-9021-4406-939e-d9dd9b528f3d", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn", "created": - "2020-01-12T16:05:28Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": - "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "accessIPv4": "", "accessIPv6": + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn", "created": + "2020-02-24T12:09:56Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": + "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:00 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:18 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-interface + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-interface body: encoding: US-ASCII string: '' @@ -188,7 +188,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -201,20 +201,20 @@ http_interactions: Content-Length: - '285' X-Compute-Request-Id: - - req-6a60ade0-1920-470a-ab14-d733f6266e11 + - req-576d10cd-68d0-4aaf-afbd-0faf7dc54594 Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:19 GMT body: encoding: ASCII-8BIT string: '{"interfaceAttachments": [{"port_state": "ACTIVE", "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.6"}], "port_id": - "25de95c7-2449-48f8-b513-54bacf26fdd1", "net_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "mac_addr": "fa:16:3e:6c:e7:30"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "port_id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "net_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "mac_addr": "fa:16:3e:9f:ba:08"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:19 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-security-groups + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-security-groups body: encoding: US-ASCII string: '' @@ -226,7 +226,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -239,63 +239,64 @@ http_interactions: Content-Length: - '3931' X-Compute-Request-Id: - - req-f93ab851-2ecf-4749-b7c5-442ce82300bc + - req-ee158250-db52-417b-88aa-57ede429bd7a Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:20 GMT body: encoding: ASCII-8BIT - string: '{"security_groups": [{"rules": [{"from_port": 80, "group": {}, "ip_protocol": - "tcp", "to_port": 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "1.2.3.4/30"}, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61"}, - {"from_port": 1, "group": {}, "ip_protocol": "tcp", "to_port": 65535, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "0.0.0.0/0"}, - "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410"}, {"from_port": 3, "group": {"tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "tcp", "to_port": 4, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad"}, {"from_port": - 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "43873bcd-d2b8-4642-887d-7680fcabb690"}, - {"from_port": 1, "group": {}, "ip_protocol": "udp", "to_port": 2, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1.2.3.4/30"}, - "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025"}, {"from_port": -1, "group": - {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd"}, - {"from_port": 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1:2:3:4:5:6:7:abc8/128"}, - "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a"}, {"from_port": 443, "group": - {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "::/0"}, "id": "66d79ba7-9049-47dc-84f5-06599772ac53"}, - {"from_port": 80, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "tcp", "to_port": - 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": - {}, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a"}, {"from_port": -1, "group": - {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "1.2.3.4/30"}, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8"}, - {"from_port": 3, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"security_groups": [{"rules": [{"from_port": 80, "group": {"tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "tcp", "to_port": 80, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "032b661c-2237-4d13-bcda-e665262a3afe"}, {"from_port": + 1, "group": {}, "ip_protocol": "udp", "to_port": 65535, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "0.0.0.0/0"}, + "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8"}, {"from_port": 1, "group": {}, + "ip_protocol": "tcp", "to_port": 65535, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "0.0.0.0/0"}, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9"}, + {"from_port": 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "1.2.3.4/30"}, + "id": "1f02f550-d977-4233-855a-3f5feaf6ba35"}, {"from_port": 3, "group": {"tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "tcp", "to_port": 4, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586"}, {"from_port": + 1, "group": {}, "ip_protocol": "tcp", "to_port": 2, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9"}, + {"from_port": 3, "group": {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "udp", "to_port": - 4, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": - {}, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573"}, {"from_port": 1, "group": - {}, "ip_protocol": "udp", "to_port": 65535, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6"}, - {"from_port": 1, "group": {}, "ip_protocol": "tcp", "to_port": 2, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1.2.3.4/30"}, - "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12"}, {"from_port": -1, "group": - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "eea7de15-9273-4065-8965-2b48b836951a"}, {"from_port": - 443, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "tcp", "to_port": 443, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14"}], "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "name": "EmsRefreshSpec-SecurityGroup", "description": "EmsRefreshSpec-SecurityGroup - description"}, {"rules": [], "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "name": "EmsRefreshSpec-SecurityGroup2", - "description": "EmsRefreshSpec-SecurityGroup2 description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + 4, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": + {}, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4"}, {"from_port": -1, "group": + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "b0431760-944c-4b12-9921-411ca3829411"}, {"from_port": + 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "1:2:3:4:5:6:7:abc8/128"}, + "id": "b58ce979-fff9-447a-b163-9cff1ac89386"}, {"from_port": 1, "group": {}, + "ip_protocol": "udp", "to_port": 2, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe"}, + {"from_port": 443, "group": {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "tcp", "to_port": + 443, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": + {}, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1"}, {"from_port": -1, "group": + {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "0.0.0.0/0"}, "id": "e4856717-6581-4299-8ea1-32ba0971dd76"}, + {"from_port": 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "::/0"}, "id": + "f72ad203-1b43-4778-ae75-0eb040d22390"}, {"from_port": -1, "group": {}, "ip_protocol": + "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87"}, + {"from_port": 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "0.0.0.0/0"}, + "id": "ffc16518-4740-4898-a099-21b93a96fc41"}], "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "name": "EmsRefreshSpec-SecurityGroup", + "description": "EmsRefreshSpec-SecurityGroup description"}, {"rules": [], + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", + "name": "EmsRefreshSpec-SecurityGroup2", "description": "EmsRefreshSpec-SecurityGroup2 + description"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:20 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-floating-ips + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-floating-ips body: encoding: US-ASCII string: '' @@ -307,7 +308,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -320,14 +321,14 @@ http_interactions: Content-Length: - '20' X-Compute-Request-Id: - - req-407e09fe-1718-4df6-8cd8-10b3a823df31 + - req-c5e311ae-566b-487a-b195-4c62bb9d647f Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:21 GMT body: encoding: ASCII-8BIT string: '{"floating_ips": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:21 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -345,70 +346,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:22 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b7da9bd9-cf46-4f20-9319-f192e7d15b25 + - req-240bcfd7-bf38-420b-8568-602c6ac9de5e Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:01.626960", "expires": - "2020-01-14T14:28:01Z", "id": "258ebd1f4875407aa761eaae2c20d7c6", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["Tcfk8vKeQRSJhuWyuO9e-Q"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:22.154048", "expires": + "2020-02-25T09:17:22Z", "id": "9bd4ab67b3ab45c29e87c59a804071c4", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["X1XUO8OITH2hdZaO_yax_g"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:22 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?floating_ip_address=172.16.17.4 @@ -423,7 +424,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -434,18 +435,18 @@ http_interactions: Content-Length: - '374' X-Openstack-Request-Id: - - req-f22d38ce-3a4e-4a65-86d1-5c47c2075bcd + - req-6e619acd-f990-456c-88f6-420e14d8e45d Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:23 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:23 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -463,70 +464,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:23 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-65148e39-909c-45f8-90a8-e3b4ace7e497 + - req-94900b5c-eea5-4ad5-86ad-1f698aef105f Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:01.810103", "expires": - "2020-01-14T14:28:01Z", "id": "25010493870243d79b2fefcee9aeaac8", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["J5Jf__08TEmyyp60sniGHQ"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:23.997040", "expires": + "2020-02-25T09:17:23Z", "id": "1849ac567c464b22b594353f8bc324fa", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["RoihsLtoRwi9OwrVDpmNuA"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:24 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -544,70 +545,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9a413576-b126-4a01-8b91-744e000806c5 + - req-59c47b24-6353-4899-965c-b68204e509bd Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:01.904390", "expires": - "2020-01-14T14:28:01Z", "id": "3f1bf5ab163040918258f4e083b10b87", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["fL0pxMVlS_GbzXwofPCo7A"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:25.062206", "expires": + "2020-02-25T09:17:25Z", "id": "7b82bec9ca994bbeaafbe7af71d9d4b7", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["nH5MLyIKRCSoNv0bhl7VUw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:25 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -622,20 +623,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3f1bf5ab163040918258f4e083b10b87 + - 7b82bec9ca994bbeaafbe7af71d9d4b7 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:25 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-648edbe6-0ba4-4888-bc4b-1f28d340dcd4 + - req-06330b31-694c-43fa-b37a-3f12f1173d1d Content-Length: - '500' Connection: @@ -644,14 +645,14 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:01 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:26 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -669,72 +670,72 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:01 GMT + - Tue, 25 Feb 2020 08:17:27 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-91fe5b9d-ddee-44cb-b4de-b9b677782d5e + - req-480c1816-0a75-4ba2-b4db-70b2115c96d5 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:02.020223", "expires": - "2020-01-14T14:28:01Z", "id": "c57a656556744f4593882d884c23d1e6", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["ip_jGDA8QDmpop9uMD8NSA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:27.075985", "expires": + "2020-02-25T09:17:27Z", "id": "515f0e2cd72a42558da17a8ee3f9c9cd", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["k3aJ1cp6T3SVU47AON6dTQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:27 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -746,46 +747,46 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c57a656556744f4593882d884c23d1e6 + - 515f0e2cd72a42558da17a8ee3f9c9cd response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-7f87851e-b89d-4624-b015-63eed3b29405 + - req-73254aca-b9a3-4d0d-8ded-fe438bc6f481 Content-Type: - application/json Content-Length: - - '1409' + - '1403' X-Openstack-Request-Id: - - req-7f87851e-b89d-4624-b015-63eed3b29405 + - req-73254aca-b9a3-4d0d-8ded-fe438bc6f481 Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:28 GMT body: encoding: ASCII-8BIT string: '{"volume": {"migration_status": null, "attachments": [{"server_id": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", - "host_name": null, "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": - "/dev/vdd", "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": - "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", + "host_name": null, "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": + "/dev/vdd", "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": + "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume", - "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:28 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4 body: encoding: US-ASCII string: '' @@ -797,46 +798,46 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c57a656556744f4593882d884c23d1e6 + - 515f0e2cd72a42558da17a8ee3f9c9cd response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-2bb1f3e9-0c01-4e14-8a27-10c185875145 + - req-f9db09d0-d001-4e22-9674-2b68ab0438b5 Content-Type: - application/json Content-Length: - - '1411' + - '1405' X-Openstack-Request-Id: - - req-2bb1f3e9-0c01-4e14-8a27-10c185875145 + - req-f9db09d0-d001-4e22-9674-2b68ab0438b5 Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:29 GMT body: encoding: ASCII-8BIT string: '{"volume": {"migration_status": null, "attachments": [{"server_id": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", - "host_name": null, "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": - "/dev/vde", "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": - "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", + "host_name": null, "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": + "/dev/vde", "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": + "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-2", - "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:30 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561 body: encoding: US-ASCII string: '' @@ -848,7 +849,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -859,20 +860,20 @@ http_interactions: Content-Type: - application/json Content-Length: - - '540' + - '536' X-Compute-Request-Id: - - req-cf4dce20-d12b-44c1-816f-8456d347530b + - req-c056fef6-ab9a-4fa6-b253-6d71112444b1 Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:30 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", + string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:31 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -890,73 +891,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:31 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-009d9cce-28fd-404e-8f33-e28ca4947ee4 + - req-ce508d16-088e-46f0-88cb-351ab341a6e3 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:02.769526", "expires": - "2020-01-14T14:28:02Z", "id": "2e70fc43e19c4c76b71121e6c4a4904b", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["UkIeTvrYS6aEAjcpM8J1Bg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:31.997315", "expires": + "2020-02-25T09:17:31Z", "id": "0f7f41576fde40188afd10c96ef8d465", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["V3bEdlzVS5Gn-txf3KJYbw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:32 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images/a5098c2b-410f-417d-be32-faedd0947b50 + uri: http://11.22.33.44:9292/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -968,7 +969,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2e70fc43e19c4c76b71121e6c4a4904b + - 0f7f41576fde40188afd10c96ef8d465 response: status: code: 200 @@ -979,20 +980,20 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-b6d45070-4cf2-4cf3-8e03-c122af807b0d + - req-d0abb15c-26c7-48a6-8fcc-e3d4c45021b0 Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:33 GMT body: encoding: ASCII-8BIT string: '{"status": "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:10Z", "visibility": "private", "self": - "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", "min_disk": 0, "protected": - false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:33 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1010,13 +1011,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:34 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-40a6e178-4276-4390-8891-30fc11af58fb + - req-ac58e2bf-1ac7-46a4-ad30-541cb52b7331 Content-Length: - '370' Connection: @@ -1025,13 +1026,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:02.956633", "expires": - "2020-01-14T14:28:02Z", "id": "38ceb2a1a99a4dcc98fef2592a1831ac", "audit_ids": - ["2Kod22PGT5i6n_hMmVqdQA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:34.363345", "expires": + "2020-02-25T09:17:34Z", "id": "0489b164f5224e32a8aadc48e72d897a", "audit_ids": + ["3TZRYIYYToW-CJcQNtlJpQ"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:34 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -1046,20 +1047,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 38ceb2a1a99a4dcc98fef2592a1831ac + - '0489b164f5224e32a8aadc48e72d897a' response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:02 GMT + - Tue, 25 Feb 2020 08:17:35 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-cc11d113-5aff-48c0-9c42-60ab4977a3dc + - req-e658712b-c540-471e-9b4d-d44d32a047dd Content-Length: - '500' Connection: @@ -1068,20 +1069,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:02 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:35 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1093,69 +1094,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-15182cd2-052f-4f4f-8d91-8a3319c29dc5 + - req-5c9a4725-a2c0-4500-9a6f-c2239210ac18 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:03.081249", "expires": - "2020-01-14T14:28:03Z", "id": "44c4b15b5f704265941df0691aa7efc9", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["2rzcVxdDQ3atkuP9wZ7-gQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:36.693832", "expires": + "2020-02-25T09:17:36Z", "id": "ff29c1973d72469a99a6ea65047795c4", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["ztqykjIVQx-v92xiJc-_GQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:36 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -1170,7 +1171,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 44c4b15b5f704265941df0691aa7efc9 + - ff29c1973d72469a99a6ea65047795c4 response: status: code: 200 @@ -1179,9 +1180,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:37 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -1189,14 +1190,14 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:38 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1208,69 +1209,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:38 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-04d1bd1c-97df-48b2-b614-9759cf5ac3ca + - req-37b43bb9-dc2a-4177-88d2-fa9c87bb4ee1 Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:03.177195", "expires": - "2020-01-14T14:28:03Z", "id": "8e32cd7284f44a2398eb5d2cc77b7059", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["hMl6TbhNTDS4LM2eOVlnaA"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:38.926317", "expires": + "2020-02-25T09:17:38Z", "id": "aa18450b6117400293d92e8be4dbac9f", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["U_XE5VFYQ5aGN1gyz2Foyw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:39 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -1285,7 +1286,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e32cd7284f44a2398eb5d2cc77b7059 + - aa18450b6117400293d92e8be4dbac9f response: status: code: 200 @@ -1294,9 +1295,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:39 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -1304,8 +1305,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:40 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1323,69 +1324,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:40 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-2385a47b-84d4-44cd-92b9-48e31bbd54a5 + - req-e3932a0c-0b0b-4620-82f5-17e2ada94179 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:03.286694", "expires": - "2020-01-14T14:28:03Z", "id": "7fb41279c88049cb8351a93b76984909", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["rr1axQMOTmWLI834luiblw"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:40.867764", "expires": + "2020-02-25T09:17:40Z", "id": "a8594af2880742bfbc260564bab08df0", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["MXKPnCGsS2SjCgDZqFwWsA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:41 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -1400,7 +1401,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7fb41279c88049cb8351a93b76984909 + - a8594af2880742bfbc260564bab08df0 response: status: code: 200 @@ -1409,9 +1410,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:42 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -1419,11 +1420,11 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:42 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1435,7 +1436,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 44c4b15b5f704265941df0691aa7efc9 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1448,22 +1449,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-1225bcd7-f960-4a86-ace6-8099f41dc54b + - req-879e0c01-4641-4f82-90db-cd23c7d9e3df Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:43 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1475,7 +1476,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 44c4b15b5f704265941df0691aa7efc9 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1488,22 +1489,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-96d5a5f9-ac91-4fa6-a424-a5f0f744f149 + - req-baf645fd-4b2c-43a3-b05d-56e0d5da9628 Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:44 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:44 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1515,7 +1516,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e32cd7284f44a2398eb5d2cc77b7059 + - ff29c1973d72469a99a6ea65047795c4 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1528,22 +1529,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-cc5e4853-e597-4746-a5fb-fea96826e6e3 + - req-b2b9b535-a5a6-4713-8e6c-6f52cd478c40 Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:45 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:45 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1555,7 +1556,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e32cd7284f44a2398eb5d2cc77b7059 + - ff29c1973d72469a99a6ea65047795c4 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1568,22 +1569,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-76e5d67b-2bf8-4931-86a4-f55e58b5f672 + - req-59fa152e-f180-47cc-b0b9-993e2e54f4cd Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:45 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:46 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1595,7 +1596,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - aa18450b6117400293d92e8be4dbac9f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1608,22 +1609,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-1926d147-0791-455d-8415-0173458bc2ee + - req-7b092988-0088-49d8-add4-e000dba837e2 Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:46 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:46 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1635,7 +1636,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - aa18450b6117400293d92e8be4dbac9f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1648,22 +1649,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-cf65fec3-f40a-4426-b8f5-ab6cd680eae1 + - req-de2265ab-c7ea-4bba-aba1-1d71832eff4f Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:47 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:47 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -1675,7 +1676,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7fb41279c88049cb8351a93b76984909 + - a8594af2880742bfbc260564bab08df0 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1688,22 +1689,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-03877e01-f30e-4d6f-8e3f-ce8eb11bef0b + - req-14a303f7-00a9-4455-b0e3-69e084d52c68 Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:48 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:48 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -1715,7 +1716,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7fb41279c88049cb8351a93b76984909 + - a8594af2880742bfbc260564bab08df0 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1728,19 +1729,19 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-5bb6f749-c287-4d93-be09-87fad1245f99 + - req-8b5c53a1-8c8a-49b2-9926-6d844754614a Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:49 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:50 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1758,73 +1759,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f9f20497-39cb-4aee-ac34-70b5fe0330ff + - req-ef01eec8-c4b4-4f3d-bf2c-867405722a7c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:03.906021", "expires": - "2020-01-14T14:28:03Z", "id": "a3ef37624c414aa4b1fba66a69505441", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["fa0lM5VUTlSEPmjvvgHnEg"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:50.703358", "expires": + "2020-02-25T09:17:50Z", "id": "c8842a59a7664e23b446ee9d2aede1c1", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["oLnD5022TkKpQ4CjQetFzQ"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:50 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561 body: encoding: US-ASCII string: '' @@ -1836,7 +1837,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1847,23 +1848,23 @@ http_interactions: Content-Type: - application/json Content-Length: - - '540' + - '536' X-Compute-Request-Id: - - req-cb6f3b0c-a3fb-4532-a0ad-227cbcbecc8f + - req-ba8f53c8-90ba-4dae-9a90-9c5a597867ec Date: - - Tue, 14 Jan 2020 13:28:03 GMT + - Tue, 25 Feb 2020 08:17:51 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", + string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:03 GMT + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:51 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-volume_attachments + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-volume_attachments body: encoding: US-ASCII string: '' @@ -1875,7 +1876,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -1888,20 +1889,20 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-7666e8fe-214d-4692-8a9e-18d4c4df68bb + - req-b1159e50-1a4e-483a-8b10-54c95775cb01 Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:52 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "volumeId": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"device": "/dev/vde", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "volumeId": "8da56634-38f0-4eb5-850c-4914089dc2ec"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "volumeId": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"device": "/dev/vde", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "volumeId": "fd763573-0660-40f7-a9af-99877e1ea6e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:52 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/networks/fd0c1994-4cee-42b6-b379-cc3d29bd32b4 + uri: http://11.22.33.44:9696/v2.0/networks/fe1373d6-962e-4439-8782-5997d874ca98 body: encoding: US-ASCII string: '' @@ -1913,7 +1914,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -1924,22 +1925,22 @@ http_interactions: Content-Length: - '440' X-Openstack-Request-Id: - - req-5aba886a-c9bc-40d7-b168-be5b2fae80f7 + - req-8cae532e-131f-4d41-a882-a1da0a5051c9 Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:53 GMT body: encoding: ASCII-8BIT - string: '{"network": {"status": "ACTIVE", "subnets": ["aa3be045-833a-4a11-9c63-3d9fc3ee0322", - "be64e82a-7735-4ae3-a390-b0fb6441c184"], "name": "EmsRefreshSpec-NetworkPrivate", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"network": {"status": "ACTIVE", "subnets": ["884c2ac4-a7a2-41c9-bd5f-599c099ca823", + "28f725f2-026f-4647-8b74-2048baac2063"], "name": "EmsRefreshSpec-NetworkPrivate", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "provider:segmentation_id": - 76}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "vxlan", "id": "fe1373d6-962e-4439-8782-5997d874ca98", "provider:segmentation_id": + 82}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:53 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/networks/23d9a208-6033-4b22-9b05-2d308ecc35fa + uri: http://11.22.33.44:9696/v2.0/networks/9e975de8-88ba-483b-9152-caa1ae01d111 body: encoding: US-ASCII string: '' @@ -1951,7 +1952,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -1962,25 +1963,25 @@ http_interactions: Content-Length: - '409' X-Openstack-Request-Id: - - req-248111ab-ad61-4ed7-937c-4ab2871cc732 + - req-ac95a1e4-b4ed-4e17-adb6-72468fa19b4d Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:53 GMT body: encoding: ASCII-8BIT - string: '{"network": {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], + string: '{"network": {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": null}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:54 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -1992,75 +1993,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:54 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-ab21eeae-90bf-4d51-a95f-297c40bc40ad + - req-741c62bc-9f9a-4a47-b3fb-17815ba195a9 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:04.435569", "expires": - "2020-01-14T14:28:04Z", "id": "0e746403a21644609c7c45babd5a8cd3", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["zByt-7QiQQCVjHJ3fcsFxQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:54.851768", "expires": + "2020-02-25T09:17:54Z", "id": "51ebccc9193f4abd89563d59ff25af51", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["QeAfQ0jhT-6teuFphx0RNw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:54 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -2072,69 +2073,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:55 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-233ff604-4494-4892-abb7-b4903f09421e + - req-e27146d8-1231-46a7-b8a9-1b31107bbd5b Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:04.545267", "expires": - "2020-01-14T14:28:04Z", "id": "8e071cdff2644ff78acc7fea4eb61510", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["kHe9kHLfRsqHgTOoC_8tOQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:55.957187", "expires": + "2020-02-25T09:17:55Z", "id": "08b88b0f8fb2445cac6696da9ffe632f", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["nqf8gVWhTcO5YRI0U4jwgw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:56 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -2152,69 +2153,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:57 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-f735f085-71cb-42f3-a25d-3200d7d10760 + - req-7748e322-14a1-4551-aa94-61daa55e5fb5 Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:28:04.655402", "expires": - "2020-01-14T14:28:04Z", "id": "9821eebec7864b2dbd4f4cb733165f2e", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["oFSQIqTHQ52NTXvi9OLJhQ"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:57.157235", "expires": + "2020-02-25T09:17:57Z", "id": "ceb92469b26a4c4da4449e568d374d72", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["Y18RpAA2QSWTNuWbDIqJyQ"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:57 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -2229,7 +2230,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -2240,116 +2241,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-ad2808bc-1717-46a2-8353-271bb2c1d6b6 + - req-6f6c68d3-549f-49c5-b879-78be4849d0f4 Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:58 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:59 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2361,7 +2362,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -2372,113 +2373,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-e2acb241-d1c0-4662-8b53-cf15db76bb51 + - req-c7ad044b-3a69-4f83-8039-b08cac7e721b Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:17:59 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:00 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -2493,7 +2494,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -2504,116 +2505,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-364ca310-9865-4b1f-a279-db694bfbd72e + - req-0c42c4e2-805e-4205-ade1-30b754878748 Date: - - Tue, 14 Jan 2020 13:28:04 GMT + - Tue, 25 Feb 2020 08:18:01 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:04 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:01 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2625,7 +2626,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -2636,113 +2637,112 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-4471a750-b023-46c6-bdf5-8d46f412a973 + - req-7c500eac-58d9-402b-acc4-d778dc9093ec Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:02 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:02 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -2757,7 +2757,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -2768,116 +2768,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-595a35d7-0c3d-4b4f-8e75-2dfaf47940d3 + - req-3d66c96e-4692-406e-98b7-0d5aa870687f Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:03 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:04 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2889,7 +2889,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -2900,113 +2900,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-fecce4d8-f846-4ddf-90a0-a5641e1e3b63 + - req-8d0b8414-5bad-41e6-b67f-8026e847156b Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:05 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:06 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -3021,7 +3021,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -3032,116 +3032,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-06343990-7ab5-447b-b4d8-1d5be9ac2055 + - req-037b841c-d33f-4e8f-ba14-c4c3fe755218 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:07 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:07 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -3153,7 +3153,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -3164,116 +3164,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-92faacd9-272e-4ae4-ac71-e020e3b8f027 + - req-cf55606c-a4c3-4ea0-b302-09c1a5ea8d41 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:08 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:09 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports/25de95c7-2449-48f8-b513-54bacf26fdd1 + uri: http://11.22.33.44:9696/v2.0/ports/5768b2d2-81a7-4baf-ac93-59df0686706a body: encoding: US-ASCII string: '' @@ -3285,7 +3285,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -3294,29 +3294,29 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '943' + - '953' X-Openstack-Request-Id: - - req-fcefc41e-fcce-4d35-87fc-bebb9cfa25e6 + - req-98f97a81-58cc-4466-8b29-b480bab0e5f0 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:09 GMT body: encoding: ASCII-8BIT - string: '{"port": {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"port": {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-6", "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], + "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.6"}], "id": - "25de95c7-2449-48f8-b513-54bacf26fdd1", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6c:e7:30"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -3328,7 +3328,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -3337,49 +3337,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-79176c05-e2f7-4003-a460-ff930efd5a1f + - req-dfb7f1a0-5b19-4a90-8745-cf8b26a0df90 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:10 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -3391,7 +3392,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -3400,49 +3401,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-12c044a2-bc2a-4830-a123-8bf24a9cf6ea + - req-c6fbd4d5-c756-4088-9a96-5281aed9a6c0 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:11 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:11 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -3454,7 +3456,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -3463,49 +3465,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-4beeb089-dcef-4565-8b5a-641e1b95051e + - req-27f4d445-631f-4f2c-bf55-2ce6b1666038 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:12 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:12 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -3517,7 +3520,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -3526,49 +3529,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-f1e8ad81-d1fc-471b-9a35-b1d481781d01 + - req-4f3703a3-f5ed-4218-bfe4-8d1cc3b5bfea Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:13 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:13 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -3580,7 +3584,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -3589,49 +3593,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-bf0010da-1e0c-446e-aa94-1172a9e2ccd5 + - req-a20e8b27-5d18-43b5-be48-82a56194dff4 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:14 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -3643,7 +3648,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -3652,49 +3657,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-baba5f55-7899-4298-9c54-5c28fc505012 + - req-94dc8b26-3260-440d-a313-4b64a4846e05 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:15 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -3706,7 +3712,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -3715,49 +3721,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-aab0fddf-b116-4fc7-a855-9bc84b97eb65 + - req-97722540-70dc-45ba-bbbe-235e5256feaf Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:16 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:16 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -3769,7 +3776,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -3778,49 +3785,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-c70dc4eb-595b-4665-9c31-4122af9c4494 + - req-81cbf752-143e-4b90-8fad-95dc14da5956 Date: - - Tue, 14 Jan 2020 13:28:05 GMT + - Tue, 25 Feb 2020 08:18:17 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:05 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:17 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers/cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers/ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a body: encoding: US-ASCII string: '' @@ -3832,7 +3840,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -3843,18 +3851,18 @@ http_interactions: Content-Length: - '443' X-Openstack-Request-Id: - - req-d28f0eff-bb89-4eaf-ab8b-a14b790ff68d + - req-9936ca79-acc2-4e1c-acd2-3c110ce3373f Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:18 GMT body: encoding: ASCII-8BIT string: '{"router": {"status": "ACTIVE", "external_gateway_info": {"network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}]}, - "name": "EmsRefreshSpec-Router", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, + "name": "EmsRefreshSpec-Router", "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "distributed": false, "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:18 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -3869,7 +3877,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -3878,202 +3886,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-3a92cc5e-b5e0-42e6-9d9c-224079d56605 + - req-cfb14c65-9f22-414b-b9d9-ad202ff84f16 Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:19 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:19 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -4085,7 +4093,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -4094,17 +4102,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-37d51be1-7f3a-4e06-a95e-61c922d77138 + - req-f232f90c-fcaf-490a-8973-3e345c25170f Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:20 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:20 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -4119,7 +4127,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -4128,202 +4136,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-41bb50f5-cfca-4bd7-94c8-1966b86d328d + - req-eb02a777-788a-41eb-9ae9-f64973d40558 Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:21 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:21 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -4335,7 +4343,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -4344,17 +4352,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-f2a59bc6-7b93-43f0-bcbe-09d9dbe8f086 + - req-53969d51-a081-4e6a-80d7-7daec7cd1798 Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:22 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:22 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -4369,7 +4377,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -4378,202 +4386,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-87d02e6c-84ad-4cab-80d2-53a1c5dcbade + - req-4ae021ea-040c-418c-932d-73564e362135 Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:24 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:25 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -4585,7 +4593,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -4594,17 +4602,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-77860ab1-2f30-49fe-814b-338f6bb6e4e8 + - req-8831325e-7b89-4085-8073-afbac2d8f84a Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:26 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:26 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -4619,7 +4627,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -4628,202 +4636,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-62de1064-6f95-4ed4-9d6c-78d4ae2e654e + - req-446a0904-00d0-42de-831e-fdf812e0bd93 Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:26 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:27 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -4835,7 +4843,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -4844,20 +4852,20 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-79db063a-a9fd-46cb-9b93-ac4d987b9c51 + - req-7e1a613a-1fa0-4563-9316-17a7f884d32c Date: - - Tue, 14 Jan 2020 13:28:06 GMT + - Tue, 25 Feb 2020 08:18:28 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:06 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:28 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d body: encoding: US-ASCII string: '' @@ -4869,7 +4877,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4880,42 +4888,42 @@ http_interactions: Content-Type: - application/json Content-Length: - - '2140' + - '2152' X-Compute-Request-Id: - - req-375b7fec-9a32-47ac-8764-54a506f043ab + - req-b0badbed-ddd8-4cfb-9f2b-7fc0d0cb99ab Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:29 GMT body: encoding: ASCII-8BIT - string: '{"server": {"status": "ACTIVE", "updated": "2020-01-13T14:54:40Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", "version": 4, "addr": "192.168.1.6", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:6c:e7:30", + string: '{"server": {"status": "ACTIVE", "updated": "2020-02-24T12:10:58Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": "192.168.1.3", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:9f:ba:08", "version": 4, "addr": "172.16.17.4", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": {"id": - "a5098c2b-410f-417d-be32-faedd0947b50", "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/images/a5098c2b-410f-417d-be32-faedd0947b50", + "23a8b2f0-991f-4792-85ba-385bba43b452", "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/images/23a8b2f0-991f-4792-85ba-385bba43b452", "rel": "bookmark"}]}, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000004", "OS-SRV-USG:launched_at": - "2020-01-12T16:06:00.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "ibm-x3550m4-12.lab.eng.brq.redhat.com", - "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", "links": [{"href": - "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "8daeb8f2-3779-4331-a876-3806676f1fe1", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "2020-02-24T12:10:37.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "links": [{"href": + "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "da40eae5-9021-4406-939e-d9dd9b528f3d", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn", "created": - "2020-01-12T16:05:28Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "OS-DCF:diskConfig": - "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "accessIPv4": "", "accessIPv6": + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn", "created": + "2020-02-24T12:09:56Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": + "MANUAL", "os-extended-volumes:volumes_attached": [{"id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:30 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-interface + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-interface body: encoding: US-ASCII string: '' @@ -4927,7 +4935,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4940,20 +4948,20 @@ http_interactions: Content-Length: - '285' X-Compute-Request-Id: - - req-a9718062-a554-4c20-ab6b-2a9b6198485f + - req-3ab5ac67-1618-4f8e-9e32-f804681cc96b Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:31 GMT body: encoding: ASCII-8BIT string: '{"interfaceAttachments": [{"port_state": "ACTIVE", "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.6"}], "port_id": - "25de95c7-2449-48f8-b513-54bacf26fdd1", "net_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "mac_addr": "fa:16:3e:6c:e7:30"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "port_id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "net_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "mac_addr": "fa:16:3e:9f:ba:08"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:31 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-security-groups + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-security-groups body: encoding: US-ASCII string: '' @@ -4965,7 +4973,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -4978,63 +4986,64 @@ http_interactions: Content-Length: - '3931' X-Compute-Request-Id: - - req-dd2913c3-7582-41a9-b949-54cd2e484fb5 + - req-c925c9f0-ad08-47de-a599-acf27be11473 Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:32 GMT body: encoding: ASCII-8BIT - string: '{"security_groups": [{"rules": [{"from_port": 80, "group": {}, "ip_protocol": - "tcp", "to_port": 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "1.2.3.4/30"}, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61"}, - {"from_port": 1, "group": {}, "ip_protocol": "tcp", "to_port": 65535, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "0.0.0.0/0"}, - "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410"}, {"from_port": 3, "group": {"tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "tcp", "to_port": 4, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad"}, {"from_port": - 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "43873bcd-d2b8-4642-887d-7680fcabb690"}, - {"from_port": 1, "group": {}, "ip_protocol": "udp", "to_port": 2, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1.2.3.4/30"}, - "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025"}, {"from_port": -1, "group": - {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd"}, - {"from_port": 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1:2:3:4:5:6:7:abc8/128"}, - "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a"}, {"from_port": 443, "group": - {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "::/0"}, "id": "66d79ba7-9049-47dc-84f5-06599772ac53"}, - {"from_port": 80, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "tcp", "to_port": - 80, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": - {}, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a"}, {"from_port": -1, "group": - {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "1.2.3.4/30"}, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8"}, - {"from_port": 3, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"security_groups": [{"rules": [{"from_port": 80, "group": {"tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "tcp", "to_port": 80, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "032b661c-2237-4d13-bcda-e665262a3afe"}, {"from_port": + 1, "group": {}, "ip_protocol": "udp", "to_port": 65535, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "0.0.0.0/0"}, + "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8"}, {"from_port": 1, "group": {}, + "ip_protocol": "tcp", "to_port": 65535, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "0.0.0.0/0"}, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9"}, + {"from_port": 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "1.2.3.4/30"}, + "id": "1f02f550-d977-4233-855a-3f5feaf6ba35"}, {"from_port": 3, "group": {"tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "tcp", "to_port": 4, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586"}, {"from_port": + 1, "group": {}, "ip_protocol": "tcp", "to_port": 2, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9"}, + {"from_port": 3, "group": {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "udp", "to_port": - 4, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": - {}, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573"}, {"from_port": 1, "group": - {}, "ip_protocol": "udp", "to_port": 65535, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {"cidr": "0.0.0.0/0"}, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6"}, - {"from_port": 1, "group": {}, "ip_protocol": "tcp", "to_port": 2, "parent_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "ip_range": {"cidr": "1.2.3.4/30"}, - "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12"}, {"from_port": -1, "group": - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "eea7de15-9273-4065-8965-2b48b836951a"}, {"from_port": - 443, "group": {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-SecurityGroup"}, - "ip_protocol": "tcp", "to_port": 443, "parent_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "ip_range": {}, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14"}], "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", - "name": "EmsRefreshSpec-SecurityGroup", "description": "EmsRefreshSpec-SecurityGroup - description"}, {"rules": [], "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "name": "EmsRefreshSpec-SecurityGroup2", - "description": "EmsRefreshSpec-SecurityGroup2 description"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + 4, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": + {}, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4"}, {"from_port": -1, "group": + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-SecurityGroup"}, + "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {}, "id": "b0431760-944c-4b12-9921-411ca3829411"}, {"from_port": + 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "1:2:3:4:5:6:7:abc8/128"}, + "id": "b58ce979-fff9-447a-b163-9cff1ac89386"}, {"from_port": 1, "group": {}, + "ip_protocol": "udp", "to_port": 2, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe"}, + {"from_port": 443, "group": {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-SecurityGroup"}, "ip_protocol": "tcp", "to_port": + 443, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": + {}, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1"}, {"from_port": -1, "group": + {}, "ip_protocol": "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "0.0.0.0/0"}, "id": "e4856717-6581-4299-8ea1-32ba0971dd76"}, + {"from_port": 443, "group": {}, "ip_protocol": "tcp", "to_port": 443, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "::/0"}, "id": + "f72ad203-1b43-4778-ae75-0eb040d22390"}, {"from_port": -1, "group": {}, "ip_protocol": + "icmp", "to_port": -1, "parent_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "ip_range": {"cidr": "1.2.3.4/30"}, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87"}, + {"from_port": 80, "group": {}, "ip_protocol": "tcp", "to_port": 80, "parent_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "ip_range": {"cidr": "0.0.0.0/0"}, + "id": "ffc16518-4740-4898-a099-21b93a96fc41"}], "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", "name": "EmsRefreshSpec-SecurityGroup", + "description": "EmsRefreshSpec-SecurityGroup description"}, {"rules": [], + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", + "name": "EmsRefreshSpec-SecurityGroup2", "description": "EmsRefreshSpec-SecurityGroup2 + description"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:32 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-floating-ips + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-floating-ips body: encoding: US-ASCII string: '' @@ -5046,7 +5055,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5059,14 +5068,14 @@ http_interactions: Content-Length: - '20' X-Compute-Request-Id: - - req-1bd9457a-ce58-426d-91c8-d0702e594eba + - req-49a3dcc3-30af-444c-9745-73548f3dab3e Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:33 GMT body: encoding: ASCII-8BIT string: '{"floating_ips": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:33 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/floatingips?floating_ip_address=172.16.17.4 @@ -5081,7 +5090,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5092,21 +5101,21 @@ http_interactions: Content-Length: - '374' X-Openstack-Request-Id: - - req-3632b17d-6d4b-47cf-a6d0-be6db0fa8433 + - req-47349cb4-318e-4269-a867-c6f23515feff Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:34 GMT body: encoding: ASCII-8BIT - string: '{"floatingips": [{"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + string: '{"floatingips": [{"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:34 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/floatingips/5f9557c0-e883-4fa3-ba04-953fe2e0779a + uri: http://11.22.33.44:9696/v2.0/floatingips/7d586b2d-b10e-4f89-a50a-41c5d36d5f0d body: encoding: US-ASCII string: '' @@ -5118,7 +5127,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5129,18 +5138,18 @@ http_interactions: Content-Length: - '371' X-Openstack-Request-Id: - - req-a2eca38b-8bab-4052-abab-2b7247ec14db + - req-ee13799c-d7a0-40f1-9522-6c538899fa7d Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:35 GMT body: encoding: ASCII-8BIT - string: '{"floatingip": {"floating_network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "router_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "fixed_ip_address": "192.168.1.6", - "floating_ip_address": "172.16.17.4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "status": "ACTIVE", "port_id": "25de95c7-2449-48f8-b513-54bacf26fdd1", "id": - "5f9557c0-e883-4fa3-ba04-953fe2e0779a"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + string: '{"floatingip": {"floating_network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", + "router_id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "fixed_ip_address": "192.168.1.3", + "floating_ip_address": "172.16.17.4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "status": "ACTIVE", "port_id": "5768b2d2-81a7-4baf-ac93-59df0686706a", "id": + "7d586b2d-b10e-4f89-a50a-41c5d36d5f0d"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:35 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -5155,20 +5164,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 3f1bf5ab163040918258f4e083b10b87 + - 7b82bec9ca994bbeaafbe7af71d9d4b7 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:36 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-906932b3-f8c8-4dd2-9465-3d355c7af1b8 + - req-5d02e22a-2613-417b-8028-da56f652644c Content-Length: - '500' Connection: @@ -5177,17 +5186,17 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:36 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd body: encoding: US-ASCII string: '' @@ -5199,46 +5208,46 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c57a656556744f4593882d884c23d1e6 + - 515f0e2cd72a42558da17a8ee3f9c9cd response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-3579b444-1452-40f0-8c57-b4f02a7abad9 + - req-f26bca3a-52c4-4c34-885f-f52c965e25a0 Content-Type: - application/json Content-Length: - - '1409' + - '1403' X-Openstack-Request-Id: - - req-3579b444-1452-40f0-8c57-b4f02a7abad9 + - req-f26bca3a-52c4-4c34-885f-f52c965e25a0 Date: - - Tue, 14 Jan 2020 13:28:07 GMT + - Tue, 25 Feb 2020 08:18:37 GMT body: encoding: ASCII-8BIT string: '{"volume": {"migration_status": null, "attachments": [{"server_id": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "attachment_id": "bfc4cd5e-585c-459d-8051-43130b7513f9", - "host_name": null, "volume_id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "device": - "/dev/vdd", "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}], "links": [{"href": - "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/cf301f4d-30e9-4b7c-a7a1-fa515c75079d", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "attachment_id": "e3922c48-6bb6-4515-994f-d0f4dca44b38", + "host_name": null, "volume_id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "device": + "/dev/vdd", "id": "c895c8fe-c56a-467e-85e8-13e2474387fd"}], "links": [{"href": + "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/c895c8fe-c56a-467e-85e8-13e2474387fd", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume", - "bootable": "false", "created_at": "2020-01-12T16:04:36.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:13.000000", "volume_type": "iscsi"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:07 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:37 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec + uri: http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4 body: encoding: US-ASCII string: '' @@ -5250,46 +5259,46 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c57a656556744f4593882d884c23d1e6 + - 515f0e2cd72a42558da17a8ee3f9c9cd response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-1da65efb-1d5d-42bb-aebe-37f69bd2c21f + - req-36e6b06a-141c-4c3a-b4da-ae789bddafb8 Content-Type: - application/json Content-Length: - - '1411' + - '1405' X-Openstack-Request-Id: - - req-1da65efb-1d5d-42bb-aebe-37f69bd2c21f + - req-36e6b06a-141c-4c3a-b4da-ae789bddafb8 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:38 GMT body: encoding: ASCII-8BIT string: '{"volume": {"migration_status": null, "attachments": [{"server_id": - "8daeb8f2-3779-4331-a876-3806676f1fe1", "attachment_id": "7a234813-4bc1-410c-a38f-92e085c9b688", - "host_name": null, "volume_id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "device": - "/dev/vde", "id": "8da56634-38f0-4eb5-850c-4914089dc2ec"}], "links": [{"href": - "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", - "rel": "self"}, {"href": "http://11.22.33.44:8776/8eb4b49207904f6eb33283732571bc0e/volumes/8da56634-38f0-4eb5-850c-4914089dc2ec", + "da40eae5-9021-4406-939e-d9dd9b528f3d", "attachment_id": "45ff67e7-d9e2-4b04-a843-0d8a0f2ff59f", + "host_name": null, "volume_id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "device": + "/dev/vde", "id": "fd763573-0660-40f7-a9af-99877e1ea6e4"}], "links": [{"href": + "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", + "rel": "self"}, {"href": "http://11.22.33.44:8776/e9bb9a5ed00244e0b3c288ed495abbf9/volumes/fd763573-0660-40f7-a9af-99877e1ea6e4", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-2", - "bootable": "false", "created_at": "2020-01-12T16:04:55.000000", "volume_type": + "bootable": "false", "created_at": "2020-02-24T12:08:47.000000", "volume_type": "iscsi"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:38 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561 body: encoding: US-ASCII string: '' @@ -5301,7 +5310,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5312,23 +5321,23 @@ http_interactions: Content-Type: - application/json Content-Length: - - '540' + - '536' X-Compute-Request-Id: - - req-ed81dd13-5e82-42b3-82d2-9683cf28ea84 + - req-932e034e-e6eb-49ce-be71-4147df405d26 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:40 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", + string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:40 GMT - request: method: get - uri: http://11.22.33.44:9292/v2/images/a5098c2b-410f-417d-be32-faedd0947b50 + uri: http://11.22.33.44:9292/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452 body: encoding: US-ASCII string: '' @@ -5340,7 +5349,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 2e70fc43e19c4c76b71121e6c4a4904b + - 0f7f41576fde40188afd10c96ef8d465 response: status: code: 200 @@ -5351,23 +5360,23 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 X-Openstack-Request-Id: - - req-d5609d11-f077-4a7a-9f0f-3a36a1717fc7 + - req-018e69ee-e663-4ee7-85cf-2c6e6cb4cc0f Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:41 GMT body: encoding: ASCII-8BIT string: '{"status": "active", "name": "EmsRefreshSpec-Image", "tags": [], "container_format": - "bare", "created_at": "2020-01-12T16:03:46Z", "size": 13287936, "disk_format": - "qcow2", "updated_at": "2020-01-12T16:04:10Z", "visibility": "private", "self": - "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50", "min_disk": 0, "protected": - false, "id": "a5098c2b-410f-417d-be32-faedd0947b50", "file": "/v2/images/a5098c2b-410f-417d-be32-faedd0947b50/file", - "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "8eb4b49207904f6eb33283732571bc0e", + "bare", "created_at": "2020-02-24T12:07:26Z", "size": 13287936, "disk_format": + "qcow2", "updated_at": "2020-02-24T12:07:46Z", "visibility": "private", "self": + "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452", "min_disk": 0, "protected": + false, "id": "23a8b2f0-991f-4792-85ba-385bba43b452", "file": "/v2/images/23a8b2f0-991f-4792-85ba-385bba43b452/file", + "checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "owner": "e9bb9a5ed00244e0b3c288ed495abbf9", "virtual_size": null, "min_ram": 0, "schema": "/v2/schemas/image"}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:41 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -5379,7 +5388,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 44c4b15b5f704265941df0691aa7efc9 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5392,22 +5401,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-101a114e-e9a4-4464-b354-2921d82b8bbf + - req-bb5e1663-811e-4ac6-ba41-e1ef88cbc97d Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:42 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:42 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -5419,7 +5428,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 44c4b15b5f704265941df0691aa7efc9 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5432,22 +5441,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-5b755e4f-d751-4def-a7f2-2d9e60aede49 + - req-b65143db-8731-4f6a-82d1-a079c1e4cda2 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:43 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:43 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -5459,7 +5468,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e32cd7284f44a2398eb5d2cc77b7059 + - ff29c1973d72469a99a6ea65047795c4 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5472,22 +5481,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-0f4bd106-c256-471a-8887-75a192e8072f + - req-5c4f4426-faca-4016-894b-5c75267e4ee5 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:44 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:44 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -5499,7 +5508,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e32cd7284f44a2398eb5d2cc77b7059 + - ff29c1973d72469a99a6ea65047795c4 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5512,22 +5521,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-cfd4ed20-e37b-4940-9cde-7c5ac771f94d + - req-526cf00b-4cf4-4ee0-85ff-8e925e7ae8dd Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:45 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:45 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -5539,7 +5548,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - aa18450b6117400293d92e8be4dbac9f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5552,22 +5561,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-9b95cc72-0f0f-4e07-9a03-157ba85e2f47 + - req-e4cc290d-b37b-4d9d-8b3f-187fa01635de Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:47 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:47 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -5579,7 +5588,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - aa18450b6117400293d92e8be4dbac9f X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5592,22 +5601,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-c5ef1c66-fb11-4036-aa90-7052b8da1ef4 + - req-9244c85d-8708-42ea-87a0-60db54f55efb Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:48 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:48 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000 body: encoding: US-ASCII string: '' @@ -5619,7 +5628,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7fb41279c88049cb8351a93b76984909 + - a8594af2880742bfbc260564bab08df0 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5632,22 +5641,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-f52e2d71-ddf7-460f-9cf4-78e78a0c18d4 + - req-e601e6e9-4408-40e9-9235-1534f9534171 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:49 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:49 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 + uri: http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9/os-keypairs?limit=1000&marker=EmsRefreshSpec-KeyPair-3 body: encoding: US-ASCII string: '' @@ -5659,7 +5668,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 7fb41279c88049cb8351a93b76984909 + - a8594af2880742bfbc260564bab08df0 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5672,22 +5681,22 @@ http_interactions: Content-Length: - '1617' X-Compute-Request-Id: - - req-b7e76c44-64d5-4809-a9df-393a065da110 + - req-6e9fdbea-9d90-40f3-94fd-803cc83a9057 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:50 GMT body: encoding: ASCII-8BIT - string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhZPhlqMkYC1t8Sdz9ITIbmVkP0eh1GdVfjaVuvXrwQUntlXZ3POXyjEs4kJJrEeNKOl3ifR5sB0yJjvLPmXkvZBnPz/tzN8TOcsOkiMLX38I4zWv6n8oXfMl8TlRVtkEhyOLCnKaJpN3moysjFSFiKxNsJfnJDtwHFntwcmsRyPQ5aL0tqcTVm569qwipotOaRfRlftBihQnZf4WJle+gS92ibTiydMuWe2bi4PY5lviyp0mCGjp/V6+u9yaewYH4UXtdChIjmgeZ25XJXUS5t06u0f80lzMOLSw3v+MUQcq03cprv+E2rH9nifq62tfCBPW0o8/l8RlWsEJppTz9 - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "ce:76:cb:81:38:df:ed:3a:10:2f:43:70:08:39:cc:7c"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+SVebCoRZL5cnK43FLt5zXXfpu5Xfb6WvJ9fYxidpood4MwNPsClN4aiNV8csgVZpAHRXsbCCKsiEeQqFDb6SoRW/o9PPXY2KPn2CLcsH0McE7el01BJRoEeqTtDTlRN8NRLLbJ4W8IcPNbFdDwWcUleeCNhakm1wLt0riAS9mCVPn4ZhRRt75qQ7vJyMdNQdbcLh/mP/5Al/qcqE9Kfug8mUkNtT/X24KrQskvg9w9o0UjBV5EFzaw93WiwRNxJ2H3uThV0W6H+TxZg0zXiF3Z9Q3h6JdsyaEn6Tm8+9nMF87fOh/wNr4MaS2s3rNvZWDpRutNiQHlDT1d76ULtz - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "0b:87:d0:74:83:99:04:be:3a:b5:b0:bf:de:f7:aa:e4"}}, - {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCydflBQZ/nzyv5ORdH2Juw2EZoJlpDtUzLzAJFwXTM2f2vif+Zd4O4SPRx6V1DIM4pWLFrVb/w5vhIvpBoh1ev0N0CqwxMySt+XoZYVKl2Lhz7zFE2fhgD8gpOyBYABwWqNFmlVnPPMrn5zY0wefCUglJ/bBpDJWmuoyByuFN5RymCbr5FGoJ9cQx4y8lm3WACpsbufbBxa/3kBQZpBBPHlWmi3h/9391ZoV0V2EBk7BScBksonDk1ZEHmkTV0pelWaCqUR6PrvFTJ52M45HdwlDAdKtGYtAIMIMCmdU1dBgbEVyD2FbJWu5QQ5PPnHuSANmSnAdCL/OqRxg6/w8LZ - Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "37:8c:2d:ca:61:2a:d2:ae:f8:09:2c:85:2d:0e:0f:7c"}}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"keypairs": [{"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDFYjkiQl7wP26vsc5TFidSwGGTfLn5T/mf4Hetw4VGEQ7Hr7bwCA0gM38n6zF2A0KRQ5h6kumWgYdmXUIaWObTro9DumotEpKKKJZTbo7uN7qi3zz2w87eS8yL935bP90WkXywp/eTbt0XB5PDgNQeoKZJjiGM5WN7Xzwdbc2/+Lm8sk9XerYbONaZe2jPz5qdNDgMkJsapGk6pdsySaThqUBzXKon+vh3C6h97Ojur80pYq6Ci9rijAdO7KQz0vhbkmen4t+ZQ6LrYPeyj/IHqkgcfoyRBRbWE2bP+3odTUk8uNa2bH/2db8HRjVH+22eLFKXXC9EuszwIKP4Izil + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair", "fingerprint": "71:8a:2a:59:6d:19:ec:b5:63:26:ee:7d:bd:62:02:7e"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHZLa1IrgMrKZRU/ezmyJ9qJ/CpxmGN1kes7P7lemlwfQbJtGm8hA1vTzQCKMuQCYnombwFnX2JZ7FI5ZyL8htLD9TP1rC5PGUrfY+mCQ8lyNu/BwYrK1qyht6XwfixucM03pdvxx6ltTW7O9La0k3SCzvHNuKIX47X2iY1MmuAP0M538Mh7fNL9JtCHdt/RcpRUwUfrPNGcg81dfhuz6CNXFbV6AchJUURTvqXqSgS2C7hPZsho2K0ffKRLsDX3scGEfoXCBBbpUcwNBdITV2l7bjNu+BEClM8eX9emKxA6ktBwfZhHu0LHnWpkHUoVZY0N0m9oaVvJPOtM/NgQuZ + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-2", "fingerprint": "2e:ea:82:e7:57:0d:11:6c:49:7f:38:07:4b:1a:90:b5"}}, + {"keypair": {"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDS+G5zI/+OuPBjykXhXFdiq2R4V4TXqdb9mLUOdhyDkY5C5YaGf2jlbGByWSAoEmc3BYQSyb2Btrvm6OgTbaGzfJkFtjoo+J4iJgCc9qT4SpJ972fhIgMaSbmtFg8FGYNYy1cDKdxbw4LitjauIL2L+hI8MX1wDLioBaSvC7DCc80YMcd7tCE8aUC+7AQX9bugQpluUCxcMii8O1pntJXErNo268uLiGjmpzEn8AGwIJl5g26ah4Ii08aUviKV42sc/QqK+Pev0GKHA/zFqxcdsovyhg3BJ8leFl22hbmksg5SF3o00Qki8DXm9PnSTvuGeAbFZu80DWY9/Fzdx4id + Generated-by-Nova\n", "name": "EmsRefreshSpec-KeyPair-3", "fingerprint": "65:5e:72:53:70:af:78:72:ef:a7:29:7e:a9:42:e4:15"}}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:50 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561 body: encoding: US-ASCII string: '' @@ -5699,7 +5708,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5710,23 +5719,23 @@ http_interactions: Content-Type: - application/json Content-Length: - - '540' + - '536' X-Compute-Request-Id: - - req-0a5f1ad0-2973-4282-bf8a-75ed2fcce92f + - req-55b68112-f752-4dda-b90d-341f25d3ea79 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:51 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", + string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:51 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/8daeb8f2-3779-4331-a876-3806676f1fe1/os-volume_attachments + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/da40eae5-9021-4406-939e-d9dd9b528f3d/os-volume_attachments body: encoding: US-ASCII string: '' @@ -5738,7 +5747,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 217bc4ae91f54725994fc4495963f333 + - 1cbd33066e7246afba3c4a5efdbc4ff8 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -5751,20 +5760,20 @@ http_interactions: Content-Length: - '371' X-Compute-Request-Id: - - req-363c66b6-2ba9-4425-b575-ddc23c4feaa0 + - req-108a3a72-6241-45c2-81bd-20c4f0349135 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:52 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d", "volumeId": "cf301f4d-30e9-4b7c-a7a1-fa515c75079d"}, - {"device": "/dev/vde", "serverId": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "id": "8da56634-38f0-4eb5-850c-4914089dc2ec", "volumeId": "8da56634-38f0-4eb5-850c-4914089dc2ec"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + string: '{"volumeAttachments": [{"device": "/dev/vdd", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "c895c8fe-c56a-467e-85e8-13e2474387fd", "volumeId": "c895c8fe-c56a-467e-85e8-13e2474387fd"}, + {"device": "/dev/vde", "serverId": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "id": "fd763573-0660-40f7-a9af-99877e1ea6e4", "volumeId": "fd763573-0660-40f7-a9af-99877e1ea6e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:52 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/networks/fd0c1994-4cee-42b6-b379-cc3d29bd32b4 + uri: http://11.22.33.44:9696/v2.0/networks/fe1373d6-962e-4439-8782-5997d874ca98 body: encoding: US-ASCII string: '' @@ -5776,7 +5785,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5787,22 +5796,22 @@ http_interactions: Content-Length: - '440' X-Openstack-Request-Id: - - req-9371d73e-7266-4632-beb1-812345777a8b + - req-dd9d8040-f1e8-4d28-a0e3-934ab3ab7af7 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:53 GMT body: encoding: ASCII-8BIT - string: '{"network": {"status": "ACTIVE", "subnets": ["aa3be045-833a-4a11-9c63-3d9fc3ee0322", - "be64e82a-7735-4ae3-a390-b0fb6441c184"], "name": "EmsRefreshSpec-NetworkPrivate", - "provider:physical_network": null, "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"network": {"status": "ACTIVE", "subnets": ["28f725f2-026f-4647-8b74-2048baac2063", + "884c2ac4-a7a2-41c9-bd5f-599c099ca823"], "name": "EmsRefreshSpec-NetworkPrivate", + "provider:physical_network": null, "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": false, "shared": false, "provider:network_type": - "vxlan", "id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "provider:segmentation_id": - 76}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + "vxlan", "id": "fe1373d6-962e-4439-8782-5997d874ca98", "provider:segmentation_id": + 82}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:54 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/networks/23d9a208-6033-4b22-9b05-2d308ecc35fa + uri: http://11.22.33.44:9696/v2.0/networks/9e975de8-88ba-483b-9152-caa1ae01d111 body: encoding: US-ASCII string: '' @@ -5814,7 +5823,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5825,19 +5834,19 @@ http_interactions: Content-Length: - '409' X-Openstack-Request-Id: - - req-5ca670ad-acfb-4eb6-8860-d383a2262f43 + - req-2dfe1e9a-174f-4dcd-9795-9c5d2355a100 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:55 GMT body: encoding: ASCII-8BIT - string: '{"network": {"status": "ACTIVE", "subnets": ["9ea140e7-4721-4721-ab36-56f2884965bc"], + string: '{"network": {"status": "ACTIVE", "subnets": ["97f11bb2-f26f-472f-9463-33c62587b97d"], "name": "EmsRefreshSpec-NetworkPublic", "provider:physical_network": "public_net_0", - "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "mtu": + "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "mtu": 0, "router:external": true, "shared": false, "provider:network_type": "flat", - "id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "provider:segmentation_id": + "id": "9e975de8-88ba-483b-9152-caa1ae01d111", "provider:segmentation_id": null}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:55 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -5852,7 +5861,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5863,116 +5872,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-fecfd4d7-2ede-43ef-be4f-ba42f1b05020 + - req-ca8652b5-a56c-4905-83c4-daf4d22df21d Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:56 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:56 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -5984,7 +5993,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -5995,113 +6004,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-d1d8d675-95bb-4a6c-8c86-dbbd6a3f1231 + - req-d8d607cf-fc6e-4e33-b4f7-d4b971580458 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:57 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:08 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:57 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -6116,7 +6125,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -6127,116 +6136,115 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-55f575b6-8666-450c-b859-ac0c76fdd88f + - req-01bb69e8-2f1f-49f5-b54f-63472ea3e464 Date: - - Tue, 14 Jan 2020 13:28:08 GMT + - Tue, 25 Feb 2020 08:18:58 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:18:59 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=884c2ac4-a7a2-41c9-bd5f-599c099ca823 body: encoding: US-ASCII string: '' @@ -6248,7 +6256,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -6259,116 +6267,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-af683086-f0bd-417b-9fee-f8435afdca48 + - req-d33664b8-18d4-4ff4-8b61-31bd6c708bb3 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:18:59 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": - "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:00 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -6380,7 +6388,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -6391,116 +6399,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-7bcc1186-ebd5-4215-a1a5-fbba4604077f + - req-e8154786-5407-47bf-99a6-3e83c98337a2 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:01 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:01 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 body: encoding: US-ASCII string: '' @@ -6512,7 +6520,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -6523,115 +6531,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-78d3911d-3ecd-42ad-bbb6-036aa624341f + - req-d676beb8-05c1-4f17-8b78-b9dc16ad5f74 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:02 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": - true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", - "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", - "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:03 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -6643,7 +6652,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -6654,116 +6663,248 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-61360553-f793-4119-9b7e-0295d0cf0a99 + - req-1725eaca-307e-4794-867a-efad4ef2db9b Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:03 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:04 GMT +- request: + method: get + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - fog-core/1.45.0 + Content-Type: + - application/json + Accept: + - application/json + X-Auth-Token: + - ceb92469b26a4c4da4449e568d374d72 + response: + status: + code: 200 + message: OK + headers: + Content-Type: + - application/json; charset=UTF-8 + Content-Length: + - '8299' + X-Openstack-Request-Id: + - req-6fdb6329-b1b5-4da8-b128-bfbb333e48b1 + Date: + - Tue, 25 Feb 2020 08:19:05 GMT + body: + encoding: ASCII-8BIT + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": + "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:06 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -6775,7 +6916,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -6786,116 +6927,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-cd6e5684-53a5-4ecd-bec5-d8f113916315 + - req-ffd1efa2-d497-4732-bd8a-a571ab2a2647 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:06 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", - "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic", "enable_dhcp": false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", - "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": - [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", - "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": + "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", + "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": - false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.19.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": - "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:07 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports/25de95c7-2449-48f8-b513-54bacf26fdd1 + uri: http://11.22.33.44:9696/v2.0/ports/5768b2d2-81a7-4baf-ac93-59df0686706a body: encoding: US-ASCII string: '' @@ -6907,7 +7048,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -6916,29 +7057,29 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '943' + - '953' X-Openstack-Request-Id: - - req-4de1e392-6394-487d-b4c3-2eb7a1f117a0 + - req-f8c35bca-835a-44c3-96c4-3e802adf298e Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:08 GMT body: encoding: ASCII-8BIT - string: '{"port": {"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"port": {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": - "host-192-168-1-6", "ip_address": "192.168.1.6", "fqdn": "host-192-168-1-6.openstacklocal."}], + "host-192-168-1-3", "ip_address": "192.168.1.3", "fqdn": "host-192-168-1-3.openstacklocal."}], "device_owner": "compute:None", "binding:profile": {}, "fixed_ips": [{"subnet_id": - "be64e82a-7735-4ae3-a390-b0fb6441c184", "ip_address": "192.168.1.6"}], "id": - "25de95c7-2449-48f8-b513-54bacf26fdd1", "security_groups": ["9974de61-e079-4e2a-8717-13f1bc8333db", - "dfe6fd1c-2080-4427-b64f-e37e3f218f66"], "device_id": "8daeb8f2-3779-4331-a876-3806676f1fe1", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", + "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.3"}], "id": + "5768b2d2-81a7-4baf-ac93-59df0686706a", "security_groups": ["23ee421e-d8fa-4674-a82f-81a8c875da8e", + "6536b9e0-53eb-4126-ad92-82a0806c4c19"], "device_id": "da40eae5-9021-4406-939e-d9dd9b528f3d", + "name": "", "admin_state_up": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:6c:e7:30"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "e9bb9a5ed00244e0b3c288ed495abbf9", "mac_address": "fa:16:3e:9f:ba:08"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:08 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -6950,7 +7091,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -6959,49 +7100,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-90a1f1eb-ffd7-436b-a56e-8705bd5710e5 + - req-dd754632-ca78-498e-ad00-24e7622ec205 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:08 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:09 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -7013,7 +7155,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -7022,49 +7164,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-65aa3c1d-580c-4ed1-91f3-b998be6e876e + - req-5a42d7d3-cf62-46c3-9eea-1adf8d4ca465 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:09 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:09 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -7076,7 +7219,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -7085,49 +7228,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-69afeafc-0540-46f3-8658-71e0fb652a81 + - req-8e9e6741-8b7b-4826-95a9-273da1f5c978 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:10 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:10 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -7139,7 +7283,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -7148,49 +7292,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-e6267dbb-ad90-4685-95f1-284ca6a37a30 + - req-3325ca36-459e-4c4f-ace4-8c5b963a8a76 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:11 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:11 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -7202,7 +7347,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -7211,49 +7356,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-7f8a6ec5-929a-4330-b3ce-675b61f595bf + - req-0942d983-4225-40af-88b5-04f0d7d35c3c Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:12 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:12 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -7265,7 +7411,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -7274,49 +7420,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-0f20af34-d659-4c9f-bac5-385c6aedff6b + - req-bf76979e-0212-4995-8c08-cc4b8d383723 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:13 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:14 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000 body: encoding: US-ASCII string: '' @@ -7328,7 +7475,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -7337,49 +7484,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-454c24af-ec6e-45e2-b700-7d85d5bb093b + - req-1d1f17bf-97ab-4537-81ef-2878a79b51fa Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:14 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/ports?device_id=cdbbd8a3-7ba1-4264-88a7-a1279558f77f&limit=1000&marker=86cd13ce-fd54-455d-b6c9-1a81445f9843 + uri: http://11.22.33.44:9696/v2.0/ports?device_id=ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a&limit=1000&marker=9fd29b69-8a5e-44fd-aa2b-5eafd327e88e body: encoding: US-ASCII string: '' @@ -7391,7 +7539,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -7400,49 +7548,50 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '2584' + - '2614' X-Openstack-Request-Id: - - req-89cb831f-c4e0-4adb-9bee-7832e64edfc7 + - req-d87cd465-ba14-47ff-9c0a-b33ff2e2ba00 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:15 GMT body: encoding: ASCII-8BIT - string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "ibm-x3550m4-12.lab.eng.brq.redhat.com", + string: '{"ports": [{"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-192-168-0-1", "ip_address": "192.168.0.1", "fqdn": "host-192-168-0-1.openstacklocal."}], "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": - [{"subnet_id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "ip_address": "192.168.0.1"}], - "id": "60053be9-1393-440e-811b-77501119ca80", "security_groups": [], "device_id": - "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", "name": "", "admin_state_up": true, - "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "dns_name": "", "binding:vif_details": + [{"subnet_id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "ip_address": "192.168.0.1"}], + "id": "39b1dd26-facc-4e6c-a2b7-a2173d6fb32d", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", - "binding:vif_type": "ovs", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "mac_address": "fa:16:3e:c1:7a:d2"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-172-16-17-2", "ip_address": "172.16.17.2", - "fqdn": "host-172-16-17-2.openstacklocal."}], "device_owner": "network:router_gateway", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", - "ip_address": "172.16.17.2"}], "id": "7419bc9d-0af0-4bb7-8eec-4b99a06bc2a0", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "", "mac_address": "fa:16:3e:b7:de:c0"}, {"status": "ACTIVE", "binding:host_id": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "allowed_address_pairs": [], "extra_dhcp_opts": - [], "dns_assignment": [{"hostname": "host-192-168-1-1", "ip_address": "192.168.1.1", - "fqdn": "host-192-168-1-1.openstacklocal."}], "device_owner": "network:router_interface", - "binding:profile": {}, "fixed_ips": [{"subnet_id": "be64e82a-7735-4ae3-a390-b0fb6441c184", - "ip_address": "192.168.1.1"}], "id": "86cd13ce-fd54-455d-b6c9-1a81445f9843", - "security_groups": [], "device_id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f", - "name": "", "admin_state_up": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "dns_name": "", "binding:vif_details": {"port_filter": true, "ovs_hybrid_plug": - true}, "binding:vnic_type": "normal", "binding:vif_type": "ovs", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "mac_address": "fa:16:3e:30:ed:40"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:f8:15:a0"}, {"status": "ACTIVE", "binding:host_id": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "allowed_address_pairs": + [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": "host-172-16-17-2", + "ip_address": "172.16.17.2", "fqdn": "host-172-16-17-2.openstacklocal."}], + "device_owner": "network:router_gateway", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}], + "id": "447d858b-62b0-4b77-8a27-f40068affa75", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "", "mac_address": "fa:16:3e:b9:80:eb"}, + {"status": "ACTIVE", "binding:host_id": "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", + "allowed_address_pairs": [], "extra_dhcp_opts": [], "dns_assignment": [{"hostname": + "host-192-168-1-1", "ip_address": "192.168.1.1", "fqdn": "host-192-168-1-1.openstacklocal."}], + "device_owner": "network:router_interface", "binding:profile": {}, "fixed_ips": + [{"subnet_id": "28f725f2-026f-4647-8b74-2048baac2063", "ip_address": "192.168.1.1"}], + "id": "9fd29b69-8a5e-44fd-aa2b-5eafd327e88e", "security_groups": [], "device_id": + "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a", "name": "", "admin_state_up": true, + "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "dns_name": "", "binding:vif_details": + {"port_filter": true, "ovs_hybrid_plug": true}, "binding:vnic_type": "normal", + "binding:vif_type": "ovs", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "mac_address": "fa:16:3e:c7:10:e4"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:15 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/routers/cdbbd8a3-7ba1-4264-88a7-a1279558f77f + uri: http://11.22.33.44:9696/v2.0/routers/ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a body: encoding: US-ASCII string: '' @@ -7454,7 +7603,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -7465,18 +7614,18 @@ http_interactions: Content-Length: - '443' X-Openstack-Request-Id: - - req-008529ad-4f35-4513-b469-4b3d87f3feb5 + - req-ced825b3-391a-4695-b62d-fdda62f2bc10 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:16 GMT body: encoding: ASCII-8BIT string: '{"router": {"status": "ACTIVE", "external_gateway_info": {"network_id": - "23d9a208-6033-4b22-9b05-2d308ecc35fa", "enable_snat": true, "external_fixed_ips": - [{"subnet_id": "9ea140e7-4721-4721-ab36-56f2884965bc", "ip_address": "172.16.17.2"}]}, - "name": "EmsRefreshSpec-Router", "admin_state_up": true, "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "distributed": false, "routes": [], "ha": false, "id": "cdbbd8a3-7ba1-4264-88a7-a1279558f77f"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "9e975de8-88ba-483b-9152-caa1ae01d111", "enable_snat": true, "external_fixed_ips": + [{"subnet_id": "97f11bb2-f26f-472f-9463-33c62587b97d", "ip_address": "172.16.17.2"}]}, + "name": "EmsRefreshSpec-Router", "admin_state_up": true, "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "distributed": false, "routes": [], "ha": false, "id": "ec1f259c-e2cd-4a78-8ee5-d71b4e8b355a"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:16 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -7491,7 +7640,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -7500,202 +7649,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-2f5753d0-92ca-43fc-807d-3973ee5bf6aa + - req-b27e8f46-3f30-40b5-bbd8-5156c335f15c Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:17 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:17 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -7707,7 +7856,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 0e746403a21644609c7c45babd5a8cd3 + - 9bd4ab67b3ab45c29e87c59a804071c4 response: status: code: 200 @@ -7716,17 +7865,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-ace071d8-f875-4f52-b831-ff27845eb251 + - req-3649aa07-40ff-4336-b515-270ab29f0f15 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:18 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:19 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -7741,7 +7890,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -7750,202 +7899,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-96e46b80-e605-4ed4-8aa0-d65432184974 + - req-3707ef6c-25a1-4c6c-a7d2-7958bd044af3 Date: - - Tue, 14 Jan 2020 13:28:09 GMT + - Tue, 25 Feb 2020 08:19:20 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:09 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:20 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -7957,7 +8106,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 8e071cdff2644ff78acc7fea4eb61510 + - 51ebccc9193f4abd89563d59ff25af51 response: status: code: 200 @@ -7966,17 +8115,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-9ab884cd-7c53-4774-900b-9329bf5d2d2f + - req-1c085312-930b-46e4-b1df-b2692fefea5e Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:19:21 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:21 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -7991,7 +8140,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -8000,202 +8149,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-a70eac2f-4263-448a-ab87-8546f38eef68 + - req-d3881ab3-c011-461d-a056-3df8d971c0d9 Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:19:22 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:23 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -8207,7 +8356,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 258ebd1f4875407aa761eaae2c20d7c6 + - '08b88b0f8fb2445cac6696da9ffe632f' response: status: code: 200 @@ -8216,17 +8365,17 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-56ea4938-5b3a-415a-8f49-87b7411b4e6b + - req-4a09b494-68c5-42ca-a811-b68df904d2b4 Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:19:24 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:24 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000 @@ -8241,7 +8390,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -8250,202 +8399,202 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '15588' + - '15586' X-Openstack-Request-Id: - - req-5e99b4c8-d12e-4e4d-a925-be331a2a1fa4 + - req-f08a5567-161a-47fe-b3e4-c94cd32a58a8 Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:19:25 GMT body: encoding: ASCII-8BIT - string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=40f20f22-b868-45cc-9b79-3a6ad9660de0&page_reverse=True", - "rel": "previous"}], "security_groups": [{"tenant_id": "2db86326708a44629d0a27103e6daa04", - "description": "Default security group", "id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "security_group_rules": [{"remote_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0", - "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "0db6d007-a6b2-4244-9326-4232ed0f816c", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - "40f20f22-b868-45cc-9b79-3a6ad9660de0", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", - "port_range_max": null, "port_range_min": null, "id": "3e9fbbd0-b19f-4f7e-a02b-f288f237ff8a", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "e6662d4d-24f0-462f-af2e-ef0f33d9a467", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}, {"remote_group_id": + string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=23ee421e-d8fa-4674-a82f-81a8c875da8e&page_reverse=True", + "rel": "previous"}], "security_groups": [{"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "description": "EmsRefreshSpec-SecurityGroup description", "id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "security_group_rules": [{"remote_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e", + "direction": "ingress", "remote_ip_prefix": null, "protocol": "tcp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 80, "port_range_min": 80, "id": "032b661c-2237-4d13-bcda-e665262a3afe", "security_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": + "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": "udp", "ethertype": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 65535, "port_range_min": 1, "id": "0a23dccb-f7a3-41e9-853e-e2de1fc1fab8", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "egress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "0d5e96d6-3366-4ce8-b7b8-650beca08028", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 65535, "port_range_min": 1, "id": "179a4fb3-2f72-44fc-891d-4c5f5d0a64c9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "1f02f550-d977-4233-855a-3f5feaf6ba35", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "2db86326708a44629d0a27103e6daa04", "port_range_max": - null, "port_range_min": null, "id": "f6a9013b-31db-454a-bb36-910c7e5094ed", - "security_group_id": "40f20f22-b868-45cc-9b79-3a6ad9660de0"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "Default - security group", "id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "security_group_rules": - [{"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "4977912b-a964-4255-825d-52a6f96bce68", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb", "direction": "ingress", - "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "port_range_max": null, "port_range_min": - null, "id": "73e01895-0201-469b-9ec3-321e76345653", "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "9e860804-6cc5-4798-a473-20a5e820e487", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}, {"remote_group_id": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "1f4044c4-2809-4d30-b0b0-f7233dc33b4b", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "331ff246-e7cd-4041-bb1e-693d02f7b586", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "819a8922-cf65-4c87-8c72-ccb4909733e9", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "8f32dc43-072f-4c41-860b-1ee10ddebe42", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 4, "port_range_min": 3, "id": "9115504d-b6b6-416e-b2fb-ebaadcd21cd4", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "959c2391-14bb-4fe9-890b-a3188be6db54", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d728d30a-7f1e-4fa6-bf8d-0792ed1857ad", - "security_group_id": "6e805b68-ee24-48d5-836e-61b4f4addadb"}], "name": "default"}, - {"tenant_id": "78c172af928e49028ca68d98c54017be", "description": "Default - security group", "id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "security_group_rules": - [{"remote_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": - "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": null, "port_range_min": - null, "id": "68584972-01a4-4afb-adbe-6ff67c89bf0b", "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, - {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "693c6dc7-78d4-44d9-8460-3875e2811365", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "a47aadb5-25c1-4583-add8-3a8dab3aa5b0", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b0431760-944c-4b12-9921-411ca3829411", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", + "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "b58ce979-fff9-447a-b163-9cff1ac89386", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "udp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 2, "port_range_min": 1, "id": "d2cd52c9-608f-42c5-ab96-cd5d03ac57fe", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + "23ee421e-d8fa-4674-a82f-81a8c875da8e", "direction": "ingress", "remote_ip_prefix": + null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 443, "port_range_min": 443, "id": "d6d2b0a6-a3e0-4c77-8a1f-94b675416ff1", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "e4856717-6581-4299-8ea1-32ba0971dd76", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", + "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + 443, "port_range_min": 443, "id": "f72ad203-1b43-4778-ae75-0eb040d22390", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": + "icmp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "fdc39a58-12d0-4a27-acba-722b64ea8c87", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}, {"remote_group_id": + null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": + "tcp", "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": 80, "port_range_min": 80, "id": "ffc16518-4740-4898-a099-21b93a96fc41", + "security_group_id": "23ee421e-d8fa-4674-a82f-81a8c875da8e"}], "name": "EmsRefreshSpec-SecurityGroup"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "Default + security group", "id": "5ac9753f-9e5a-47b3-8279-62ab2837c568", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "719c57b8-0689-4712-98e0-76f279aa187d", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "7e4c820e-eb58-4793-ae2e-8fa4670f1c67", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": + "5ac9753f-9e5a-47b3-8279-62ab2837c568", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "b5ef1b1b-26f7-4bbb-900a-80b8db6f7166", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", "port_range_max": - null, "port_range_min": null, "id": "80cd56c9-0ae8-4caf-8555-86f8ebc48444", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}, {"remote_group_id": - "832ed4b5-caa3-4c6a-aea6-48c901b6ad85", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "78c172af928e49028ca68d98c54017be", - "port_range_max": null, "port_range_min": null, "id": "b971b2ee-8f13-4b18-a672-99d9569282bc", - "security_group_id": "832ed4b5-caa3-4c6a-aea6-48c901b6ad85"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup2 - description", "id": "9974de61-e079-4e2a-8717-13f1bc8333db", "security_group_rules": + "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "e98b224e-15c0-473c-af1b-b309df2a3263", + "security_group_id": "5ac9753f-9e5a-47b3-8279-62ab2837c568"}], "name": "default"}, + {"tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "description": "EmsRefreshSpec-SecurityGroup2 + description", "id": "6536b9e0-53eb-4126-ad92-82a0806c4c19", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "00616f8f-f1a3-4578-86ae-2fa6f7b157c6", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "port_range_max": null, "port_range_min": null, "id": "2c3ff26e-316a-4b37-a72f-7c13053dbaaa", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "d864b88e-a5ba-4e45-8227-01620987ee09", - "security_group_id": "9974de61-e079-4e2a-8717-13f1bc8333db"}], "name": "EmsRefreshSpec-SecurityGroup2"}, - {"tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "description": "Default - security group", "id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "security_group_rules": - [{"remote_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": + "IPv4", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "port_range_max": + null, "port_range_min": null, "id": "adf841fd-9599-48aa-b2be-7406e95e0410", + "security_group_id": "6536b9e0-53eb-4126-ad92-82a0806c4c19"}], "name": "EmsRefreshSpec-SecurityGroup2"}, + {"tenant_id": "4f018636e6414466b02641748cd91484", "description": "Default + security group", "id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "security_group_rules": + [{"remote_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv4", - "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": null, "port_range_min": - null, "id": "7dfa27d3-9b8e-4452-884a-9396371ac5b7", "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, + "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": null, "port_range_min": + null, "id": "4047d027-d96f-45c7-9357-9f77ae259b9f", "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "91a89703-b5c9-4880-9105-eb037cc339c7", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "824456f4-15af-4e45-8394-0e6925f3a932", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": + "6d2d392b-8473-4c60-9360-ad98ca89ae34", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "4f018636e6414466b02641748cd91484", + "port_range_max": null, "port_range_min": null, "id": "82d2effb-cf8c-4a96-95c5-9187c97ff5a4", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", "port_range_max": - null, "port_range_min": null, "id": "9b17204d-761d-4a99-8497-7551df39e2f0", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}, {"remote_group_id": - "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "66df12d5801449a2b529d3a1bbf279b0", - "port_range_max": null, "port_range_min": null, "id": "ab660e77-e504-481f-90f2-a15870e4687f", - "security_group_id": "9d8bcaa8-340b-4ecf-8556-d4efa9e9b6e7"}], "name": "default"}, - {"tenant_id": "56ac37685be246aba905e0301d595693", "description": "Default - security group", "id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "security_group_rules": + "IPv4", "tenant_id": "4f018636e6414466b02641748cd91484", "port_range_max": + null, "port_range_min": null, "id": "e15cff75-0289-45e5-a819-872a70a70501", + "security_group_id": "6d2d392b-8473-4c60-9360-ad98ca89ae34"}], "name": "default"}, + {"tenant_id": "6152fef686644e46820e3d266fc8a5ce", "description": "Default + security group", "id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "security_group_rules": [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, - "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "2cdb11be-9b6d-4bb9-8519-acea0e0b9aaa", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": + "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "36ea6d01-4108-46be-8164-5684469bcfaa", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "729da441-5866-4d7b-a53d-0beda19b7cf6", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": + "a97b8e0f-642e-4736-8432-0a9b63e03ecd", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", + "port_range_max": null, "port_range_min": null, "id": "9534039e-fd14-4360-a595-6bcc28d378af", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", "port_range_max": - null, "port_range_min": null, "id": "8354f406-50ef-4ed6-b357-29ef0622dc4c", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv4", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d675b654-5d25-42ee-bace-013d499484e2", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}, {"remote_group_id": - "cd41bb8c-b0af-4625-92cf-ed8b108405ea", "direction": "ingress", "remote_ip_prefix": - null, "protocol": null, "ethertype": "IPv6", "tenant_id": "56ac37685be246aba905e0301d595693", - "port_range_max": null, "port_range_min": null, "id": "d8a1a099-c07b-4389-bf7f-973a4f31efc0", - "security_group_id": "cd41bb8c-b0af-4625-92cf-ed8b108405ea"}], "name": "default"}, - {"tenant_id": "8eb4b49207904f6eb33283732571bc0e", "description": "EmsRefreshSpec-SecurityGroup - description", "id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "security_group_rules": - [{"remote_group_id": null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", - "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "16539df3-4e8d-4b3d-b36f-d31758af0b61", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "17b38629-c76d-4e60-a818-c88061e9a3bb", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "6152fef686644e46820e3d266fc8a5ce", "port_range_max": + null, "port_range_min": null, "id": "98cbe873-b613-4765-8b30-84d9f04d8a35", + "security_group_id": "a97b8e0f-642e-4736-8432-0a9b63e03ecd"}], "name": "default"}, + {"tenant_id": "870893e207284ce097c917a7d522f953", "description": "Default + security group", "id": "bb4e0aa7-607d-4118-b744-aec08073989a", "security_group_rules": + [{"remote_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": + "ingress", "remote_ip_prefix": null, "protocol": null, "ethertype": "IPv6", + "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": null, "port_range_min": + null, "id": "010812a3-b9a6-4d52-a9a1-45a5e01c712a", "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, + {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv6", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "41ec833f-5eb7-492b-86fb-f50801869207", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "3db7ddf6-f7e1-4c9b-b19f-188acaef7a79", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "3e0e773a-2220-4aa0-9fb4-1c2555bbe410", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "42ba0638-4a9c-4b28-a76a-0eef3bf012ad", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "43873bcd-d2b8-4642-887d-7680fcabb690", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "4af23aa0-0647-46cd-bf84-3e5f5c5f4025", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "5102ca41-10f8-4bed-a1f6-8c94c0ca8afd", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1:2:3:4:5:6:7:abc8/128", - "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "6672106e-2dbc-4a29-b3c8-84f84f2fbd8a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "::/0", "protocol": "tcp", - "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - 443, "port_range_min": 443, "id": "66d79ba7-9049-47dc-84f5-06599772ac53", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 80, "port_range_min": 80, "id": "702269bf-bef2-4a98-b1f4-3a616c57c87a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "egress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "80105593-0766-4e12-af25-526634f1511d", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "8ae7b70b-5d52-45e0-9873-9026549431d8", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "egress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "91779e1d-0e15-4c30-9fa9-f1da86feb538", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 4, "port_range_min": 3, "id": "99da01ee-a292-4bf6-8f0e-50c7050e3573", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "0.0.0.0/0", "protocol": - "udp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 65535, "port_range_min": 1, "id": "bdcdbdc9-fb86-4d77-86a8-2242a06f75d6", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - null, "direction": "ingress", "remote_ip_prefix": "1.2.3.4/30", "protocol": - "tcp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 2, "port_range_min": 1, "id": "dc01596c-b4f0-4504-9d5b-0e575cf46d12", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": + "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", "port_range_max": + null, "port_range_min": null, "id": "66935d1c-1c89-46e9-af26-02a82d1112c2", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}, {"remote_group_id": + "bb4e0aa7-607d-4118-b744-aec08073989a", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "870893e207284ce097c917a7d522f953", + "port_range_max": null, "port_range_min": null, "id": "f0fc2a3a-9a97-4421-93ca-30d0081cfa36", + "security_group_id": "bb4e0aa7-607d-4118-b744-aec08073989a"}], "name": "default"}, + {"tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "description": "Default + security group", "id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "security_group_rules": + [{"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, + "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "28beb4d0-222e-4f07-a647-9ecc815e117d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv4", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "2b450160-d1f7-4344-a1b0-3732d58f6fad", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": null, "direction": "egress", "remote_ip_prefix": null, "protocol": null, "ethertype": - "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "port_range_max": - null, "port_range_min": null, "id": "dd241ca9-e372-4294-b924-e1661352dd5a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "icmp", "ethertype": "IPv4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": null, "port_range_min": null, "id": "eea7de15-9273-4065-8965-2b48b836951a", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}, {"remote_group_id": - "dfe6fd1c-2080-4427-b64f-e37e3f218f66", "direction": "ingress", "remote_ip_prefix": - null, "protocol": "tcp", "ethertype": "IPv6", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "port_range_max": 443, "port_range_min": 443, "id": "fb1555e6-1af6-4b4a-8920-7c614a971b14", - "security_group_id": "dfe6fd1c-2080-4427-b64f-e37e3f218f66"}], "name": "EmsRefreshSpec-SecurityGroup"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT + "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", "port_range_max": + null, "port_range_min": null, "id": "85620201-f80b-4387-91d0-059ba8cdde2d", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}, {"remote_group_id": + "d0de4435-2393-450b-bcfe-ac4ddf457bf8", "direction": "ingress", "remote_ip_prefix": + null, "protocol": null, "ethertype": "IPv6", "tenant_id": "dadaba8276f24d6eb2526ffa43cd4e33", + "port_range_max": null, "port_range_min": null, "id": "97a14223-a237-4301-8b0c-7f8c2019c452", + "security_group_id": "d0de4435-2393-450b-bcfe-ac4ddf457bf8"}], "name": "default"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:25 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=dfe6fd1c-2080-4427-b64f-e37e3f218f66 + uri: http://11.22.33.44:9696/v2.0/security-groups?limit=1000&marker=d0de4435-2393-450b-bcfe-ac4ddf457bf8 body: encoding: US-ASCII string: '' @@ -8457,7 +8606,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 9821eebec7864b2dbd4f4cb733165f2e + - ceb92469b26a4c4da4449e568d374d72 response: status: code: 200 @@ -8466,15 +8615,15 @@ http_interactions: Content-Type: - application/json; charset=UTF-8 Content-Length: - - '157' + - '155' X-Openstack-Request-Id: - - req-e0892672-5af3-4b6e-b87e-bdbd13b71120 + - req-b8e199fd-8525-4f57-a53f-ad57d5c1c177 Date: - - Tue, 14 Jan 2020 13:28:10 GMT + - Tue, 25 Feb 2020 08:19:26 GMT body: encoding: ASCII-8BIT string: '{"security_groups_links": [{"href": "http://11.22.33.44:9696/v2.0/security-groups?limit=1000&page_reverse=True", "rel": "previous"}], "security_groups": []}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:28:10 GMT -recorded_with: VCR 5.0.0 + http_version: null + recorded_at: Tue, 25 Feb 2020 08:19:26 GMT +recorded_with: VCR 5.1.0 diff --git a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_volume_targeted_refresh.yml b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_volume_targeted_refresh.yml index e8bf11014..340fd8528 100644 --- a/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_volume_targeted_refresh.yml +++ b/spec/vcr_cassettes/manageiq/providers/openstack/cloud_manager/refresher_rhos_liberty_volume_targeted_refresh.yml @@ -17,70 +17,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:31 GMT + - Tue, 25 Feb 2020 08:16:44 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-a5ba4e04-461e-4520-a0bf-1a8138780c0e + - req-c2df5381-efc7-465c-92de-62a57a5efb7c Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:31.963668", "expires": - "2020-01-14T14:27:31Z", "id": "37c70cd58c904b28a97fed507be63e4f", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["vOFu31KySAS4zAvR2FS6kA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:44.817827", "expires": + "2020-02-25T09:16:44Z", "id": "fba1208e8ea14ac0aa3d6085ae561d51", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["yHL2sNQ6QFWlRXm-qi7h7Q"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:31 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:44 GMT - request: method: get uri: http://11.22.33.44:8774/ @@ -95,7 +95,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37c70cd58c904b28a97fed507be63e4f + - fba1208e8ea14ac0aa3d6085ae561d51 response: status: code: 200 @@ -104,9 +104,9 @@ http_interactions: Content-Type: - application/json Content-Length: - - '373' + - '369' Date: - - Tue, 14 Jan 2020 13:27:31 GMT + - Tue, 25 Feb 2020 08:16:45 GMT body: encoding: ASCII-8BIT string: '{"versions": [{"status": "SUPPORTED", "updated": "2011-01-21T11:33:21Z", @@ -114,8 +114,8 @@ http_interactions: "", "version": "", "id": "v2.0"}, {"status": "CURRENT", "updated": "2013-07-23T11:33:21Z", "links": [{"href": "http://11.22.33.44:8774/v2.1/", "rel": "self"}], "min_version": "2.1", "version": "2.12", "id": "v2.1"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:31 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:45 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -133,73 +133,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:31 GMT + - Tue, 25 Feb 2020 08:16:46 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-b78e8b7f-c624-4194-9c2c-a77ec497385c + - req-c10d723e-3f74-43cd-9354-35cfac61aff3 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:32.058548", "expires": - "2020-01-14T14:27:32Z", "id": "f74567711b4348dab2e59a4c5b049dc1", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["Wc6K194fRny2XoYbzTr77w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:46.571801", "expires": + "2020-02-25T09:16:46Z", "id": "b7943d79f1d8411ebe39eb8f8b585974", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["duxvzJ-TTZShOQuDmfqxtw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:46 GMT - request: method: get - uri: http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/2042bbec-e245-405e-8e77-cde0205ab38e + uri: http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a body: encoding: US-ASCII string: '' @@ -211,46 +211,46 @@ http_interactions: Accept: - application/json X-Auth-Token: - - f74567711b4348dab2e59a4c5b049dc1 + - b7943d79f1d8411ebe39eb8f8b585974 response: status: code: 200 message: OK headers: X-Compute-Request-Id: - - req-afebc847-540f-4631-b1f9-863a8aa7e52e + - req-336c0a0a-4901-4b77-b69c-83efef4e441a Content-Type: - application/json Content-Length: - - '1680' + - '1674' X-Openstack-Request-Id: - - req-afebc847-540f-4631-b1f9-863a8aa7e52e + - req-336c0a0a-4901-4b77-b69c-83efef4e441a Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:47 GMT body: encoding: ASCII-8BIT string: '{"volume": {"migration_status": null, "attachments": [{"server_id": - "0c338e1b-b23c-41e8-8223-fc8086d24e96", "attachment_id": "01a6de42-57d4-40eb-ba0a-c42f8beeff5f", - "host_name": null, "volume_id": "2042bbec-e245-405e-8e77-cde0205ab38e", "device": - "/dev/vda", "id": "2042bbec-e245-405e-8e77-cde0205ab38e"}], "links": [{"href": - "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", - "rel": "self"}, {"href": "http://11.22.33.44:8776/66df12d5801449a2b529d3a1bbf279b0/volumes/2042bbec-e245-405e-8e77-cde0205ab38e", + "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "attachment_id": "980b5e4e-82a7-4eac-add1-c9f9fc44b5c5", + "host_name": null, "volume_id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "device": + "/dev/vda", "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "links": [{"href": + "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "rel": "self"}, {"href": "http://11.22.33.44:8776/4f018636e6414466b02641748cd91484/volumes/12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "rel": "bookmark"}], "availability_zone": "nova", "os-vol-host-attr:host": - "ibm-x3550m4-12@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": - null, "replication_status": "disabled", "snapshot_id": null, "id": "2042bbec-e245-405e-8e77-cde0205ab38e", - "size": 1, "user_id": "429846f1f4c9494dab287d7d4554e465", "os-vol-tenant-attr:tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "os-vol-mig-status-attr:migstat": null, + "dhcp-8-99-82@lvm#lvm", "encrypted": false, "os-volume-replication:extended_status": + null, "replication_status": "disabled", "snapshot_id": null, "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", + "size": 1, "user_id": "27847c2f160f4bdc8b6a67fc5948c71d", "os-vol-tenant-attr:tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "os-vol-mig-status-attr:migstat": null, "metadata": {"readonly": "False", "attached_mode": "rw"}, "status": "in-use", "volume_image_metadata": {"checksum": "ee1eca47dc88f4879d8a229cc70a07c6", "min_ram": "0", "disk_format": "qcow2", "image_name": "EmsRefreshSpec-Image", - "image_id": "a5098c2b-410f-417d-be32-faedd0947b50", "container_format": "bare", + "image_id": "23a8b2f0-991f-4792-85ba-385bba43b452", "container_format": "bare", "min_disk": "0", "size": "13287936"}, "description": "EmsRefreshSpec-Volume description", "multiattach": false, "os-volume-replication:driver_data": null, "source_volid": null, "consistencygroup_id": null, "os-vol-mig-status-attr:name_id": null, "name": "EmsRefreshSpec-Volume-3", "bootable": "true", "created_at": - "2020-01-12T16:05:01.000000", "volume_type": "iscsi"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + "2020-02-24T12:08:53.000000", "volume_type": "iscsi"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:47 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -268,70 +268,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:48 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-dae78446-a1ae-4d24-9670-f520c0327f0d + - req-43a4f9bd-0740-4d2d-85bb-9ac7a0382fa8 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:32.551758", "expires": - "2020-01-14T14:27:32Z", "id": "178aa2f271d34cbc8147943177b51eeb", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["RCScW4H5R5i3nRwM58n6WA"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:48.640785", "expires": + "2020-02-25T09:16:48Z", "id": "c62dc156ec7a42b19d8273a9f49fac03", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["y3b5KJGsSCWhAvLxLD5VRw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:48 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -349,73 +349,73 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:50 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-34ab0291-a10c-4f8e-a281-84e0f2eeb3d8 + - req-a2c72ea7-96ea-4fba-b6e8-d4f7c61c8794 Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:32.643429", "expires": - "2020-01-14T14:27:32Z", "id": "d8f4b39f68814fa8a7f7ade3bd272a12", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["Zgbri2oyRXG90clPjYSB3w"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:50.364614", "expires": + "2020-02-25T09:16:50Z", "id": "5e8b179e17854efa806c0f459cc987eb", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["Bs80Q1c2StqiWj6Ak7drYg"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:50 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0 body: encoding: US-ASCII string: '' @@ -427,7 +427,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37c70cd58c904b28a97fed507be63e4f + - fba1208e8ea14ac0aa3d6085ae561d51 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -438,40 +438,40 @@ http_interactions: Content-Type: - application/json Content-Length: - - '1920' + - '1934' X-Compute-Request-Id: - - req-7b7b6631-a74e-4226-9ca9-42e34a9b16bd + - req-c8aa23fe-f0c6-4bd0-a36a-f6d15bb41615 Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:51 GMT body: encoding: ASCII-8BIT - string: '{"server": {"status": "ACTIVE", "updated": "2020-01-13T14:55:05Z", - "hostId": "0d361a4d7b57f1477b16f8b32c48e8007a4087cd35733d7c2497cbc8", "OS-EXT-SRV-ATTR:host": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": - [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", "version": 4, "addr": "192.168.3.9", - "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:d2:d0:c4", + string: '{"server": {"status": "ACTIVE", "updated": "2020-02-24T12:10:24Z", + "hostId": "345ad580643d96b06ec7314302b92265fe24466c5322b06bd1fe469e", "OS-EXT-SRV-ATTR:host": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "addresses": {"EmsRefreshSpec-NetworkPrivate_3": + [{"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "192.168.3.9", + "OS-EXT-IPS:type": "fixed"}, {"OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:11:ee:ef", "version": 4, "addr": "172.16.17.5", "OS-EXT-IPS:type": "floating"}]}, "links": - [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96", + [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "rel": "bookmark"}], "key_name": "EmsRefreshSpec-KeyPair", "image": "", "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-SRV-ATTR:instance_name": "instance-00000005", - "OS-SRV-USG:launched_at": "2020-01-12T16:05:50.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": - "ibm-x3550m4-12.lab.eng.brq.redhat.com", "flavor": {"id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "links": [{"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "bookmark"}]}, "id": "0c338e1b-b23c-41e8-8223-fc8086d24e96", "security_groups": - [{"name": "EmsRefreshSpec-SecurityGroup2"}, {"name": "EmsRefreshSpec-SecurityGroup"}], + "OS-SRV-USG:launched_at": "2020-02-24T12:10:24.000000", "OS-EXT-SRV-ATTR:hypervisor_hostname": + "dhcp-8-99-82.cloudforms.lab.eng.rdu2.redhat.com", "flavor": {"id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "links": [{"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "bookmark"}]}, "id": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", "security_groups": + [{"name": "EmsRefreshSpec-SecurityGroup"}, {"name": "EmsRefreshSpec-SecurityGroup2"}], "OS-SRV-USG:terminated_at": null, "OS-EXT-AZ:availability_zone": "nova", "user_id": - "429846f1f4c9494dab287d7d4554e465", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", - "created": "2020-01-12T16:05:30Z", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + "27847c2f160f4bdc8b6a67fc5948c71d", "name": "EmsRefreshSpec-PoweredOn-WithRootVolume", + "created": "2020-02-24T12:09:58Z", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "OS-DCF:diskConfig": "MANUAL", "os-extended-volumes:volumes_attached": [{"id": - "2042bbec-e245-405e-8e77-cde0205ab38e"}], "accessIPv4": "", "accessIPv6": + "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}], "accessIPv4": "", "accessIPv6": "", "progress": 0, "OS-EXT-STS:power_state": 1, "config_drive": "", "metadata": {}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:52 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162 + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561 body: encoding: US-ASCII string: '' @@ -483,7 +483,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37c70cd58c904b28a97fed507be63e4f + - fba1208e8ea14ac0aa3d6085ae561d51 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -494,20 +494,20 @@ http_interactions: Content-Type: - application/json Content-Length: - - '540' + - '536' X-Compute-Request-Id: - - req-c9222060-53b6-4246-ad20-132ea5b6b700 + - req-86c8dc26-1661-4e46-b74a-546c33aee31b Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:52 GMT body: encoding: ASCII-8BIT - string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", - "rel": "self"}, {"href": "http://11.22.33.44:8774/66df12d5801449a2b529d3a1bbf279b0/flavors/6ec39521-99f7-40ad-a3c6-6405e4a8a162", + string: '{"flavor": {"name": "m1.ems_refresh_spec", "links": [{"href": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", + "rel": "self"}, {"href": "http://11.22.33.44:8774/4f018636e6414466b02641748cd91484/flavors/36fa1369-773e-4aa8-ab96-b1b6a8a4b561", "rel": "bookmark"}], "ram": 512, "OS-FLV-DISABLED:disabled": false, "vcpus": 1, "swap": 512, "os-flavor-access:is_public": true, "rxtx_factor": 1.0, "OS-FLV-EXT-DATA:ephemeral": - 1, "disk": 1, "id": "6ec39521-99f7-40ad-a3c6-6405e4a8a162"}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:32 GMT + 1, "disk": 1, "id": "36fa1369-773e-4aa8-ab96-b1b6a8a4b561"}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:53 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -525,70 +525,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:32 GMT + - Tue, 25 Feb 2020 08:16:54 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3be5a639-f3c9-48e1-a4a2-d3a64a7ac511 + - req-853f63a9-4ba1-440d-b59d-980678f7edce Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.066905", "expires": - "2020-01-14T14:27:33Z", "id": "b6dca57d85644288a9cef676d9e6c3d5", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["09BS9sh_QaKhEm16fIezuw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:54.265843", "expires": + "2020-02-25T09:16:54Z", "id": "cfa72e5c806d4f0d9229cfa04003260f", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["TpKb9wIYRLyJDmFODRm0bw"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:54 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -603,20 +603,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - b6dca57d85644288a9cef676d9e6c3d5 + - cfa72e5c806d4f0d9229cfa04003260f response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:16:55 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-9373c401-7831-41b4-830a-8b9910402729 + - req-48ca18ce-bf84-42b6-ab29-d865f8ba7615 Content-Length: - '500' Connection: @@ -625,17 +625,17 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:55 GMT - request: method: get - uri: http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0/servers/0c338e1b-b23c-41e8-8223-fc8086d24e96/os-volume_attachments + uri: http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484/servers/2c17e2a5-bc80-48a3-bd46-d2e6b258cac0/os-volume_attachments body: encoding: US-ASCII string: '' @@ -647,7 +647,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 37c70cd58c904b28a97fed507be63e4f + - fba1208e8ea14ac0aa3d6085ae561d51 X-Openstack-Nova-Api-Version: - '2.12' response: @@ -660,15 +660,15 @@ http_interactions: Content-Length: - '197' X-Compute-Request-Id: - - req-accb92f3-6a68-4f08-99e8-2686cbaa52f9 + - req-bf7fa1a1-b720-4df0-9a1e-94e779e4e19d Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:16:56 GMT body: encoding: ASCII-8BIT - string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "0c338e1b-b23c-41e8-8223-fc8086d24e96", - "id": "2042bbec-e245-405e-8e77-cde0205ab38e", "volumeId": "2042bbec-e245-405e-8e77-cde0205ab38e"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + string: '{"volumeAttachments": [{"device": "/dev/vda", "serverId": "2c17e2a5-bc80-48a3-bd46-d2e6b258cac0", + "id": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a", "volumeId": "12a60717-cc9e-426d-82d6-7ac2e8eabd3a"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:56 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -686,70 +686,70 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:16:57 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-3c591307-7755-4bf3-94d1-63d30a550176 + - req-67ce36f7-85bd-427b-ba30-edd0662fd92e Content-Length: - - '4200' + - '4140' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.365620", "expires": - "2020-01-14T14:27:33Z", "id": "fae578cc734c44339c24df117726d038", "tenant": - {"description": "admin tenant", "enabled": true, "id": "66df12d5801449a2b529d3a1bbf279b0", - "name": "admin"}, "audit_ids": ["TG5xuP1uTdG4IknauHXdfw"]}, "serviceCatalog": - [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/66df12d5801449a2b529d3a1bbf279b0"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:57.590182", "expires": + "2020-02-25T09:16:57Z", "id": "ffd61306002344ff97e38b2ffdb13c5d", "tenant": + {"description": "admin tenant", "enabled": true, "id": "4f018636e6414466b02641748cd91484", + "name": "admin"}, "audit_ids": ["z1VxnNS2Rk2u_EbvfTYG8Q"]}, "serviceCatalog": + [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/66df12d5801449a2b529d3a1bbf279b0"}], + [{"adminURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/66df12d5801449a2b529d3a1bbf279b0"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/66df12d5801449a2b529d3a1bbf279b0"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_66df12d5801449a2b529d3a1bbf279b0"}], + "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_4f018636e6414466b02641748cd91484"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "_member_"}, - {"name": "admin"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": - {"is_admin": 0, "roles": ["9fe2ff9ee4384b1894a90878d3e92bab", "4e0b5e7d30a34af8ab45e4d19d94a434", - "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "_member_"}, {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": + {"is_admin": 0, "roles": ["bdd08142248f4993bf1c93f0278a6e1f", "9fe2ff9ee4384b1894a90878d3e92bab", + "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:57 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -767,13 +767,13 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:16:58 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-0a010802-27bc-45b4-b4e0-12042554877f + - req-028eb0d4-d906-48af-86ec-d79f7bed1088 Content-Length: - '370' Connection: @@ -782,13 +782,13 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.443038", "expires": - "2020-01-14T14:27:33Z", "id": "42660b12eaf64fb9ad5cfa8fc7741c9e", "audit_ids": - ["q7m469WuS16lVubbiHDUcA"]}, "serviceCatalog": [], "user": {"username": "admin", - "roles_links": [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:16:58.225557", "expires": + "2020-02-25T09:16:58Z", "id": "c42583656043433198b13a3d0e725d46", "audit_ids": + ["PcL7S8sIRpOrjG2dFpkusA"]}, "serviceCatalog": [], "user": {"username": "admin", + "roles_links": [], "id": "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [], "name": "admin"}, "metadata": {"is_admin": 0, "roles": []}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:58 GMT - request: method: get uri: http://11.22.33.44:5000/v2.0/tenants @@ -803,20 +803,20 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 42660b12eaf64fb9ad5cfa8fc7741c9e + - c42583656043433198b13a3d0e725d46 response: status: code: 200 message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:16:59 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-d777a9ba-8286-40ad-9109-ad70ce573383 + - req-aa4838b1-0996-468a-bbc1-f5c60bf8759e Content-Length: - '500' Connection: @@ -825,20 +825,20 @@ http_interactions: - application/json body: encoding: ASCII-8BIT - string: '{"tenants_links": [], "tenants": [{"description": "", "enabled": true, - "id": "2db86326708a44629d0a27103e6daa04", "name": "EmsRefreshSpec-Project-No-Admin-Role"}, - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, {"description": "admin tenant", "enabled": - true, "id": "66df12d5801449a2b529d3a1bbf279b0", "name": "admin"}, {"description": - "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", "name": "EmsRefreshSpec-Project"}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + string: '{"tenants_links": [], "tenants": [{"description": "admin tenant", "enabled": + true, "id": "4f018636e6414466b02641748cd91484", "name": "admin"}, {"description": + "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", "name": "EmsRefreshSpec-Project2"}, + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, {"description": "", "enabled": + true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", "name": "EmsRefreshSpec-Project"}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:16:59 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' headers: User-Agent: - fog-core/1.45.0 @@ -850,75 +850,75 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:17:00 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-971a6eb2-f225-449e-815f-7948b7c66645 + - req-8d8aaede-4612-46c5-9980-1308a7a0e7c1 Content-Length: - - '4161' + - '4088' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.564348", "expires": - "2020-01-14T14:27:33Z", "id": "57bceb7c4d524c7aa86ff35cd87c7020", "tenant": - {"description": "", "enabled": true, "id": "2db86326708a44629d0a27103e6daa04", - "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["IYlPoITuQy-vmpOOd1T3Hg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/2db86326708a44629d0a27103e6daa04"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:00.210018", "expires": + "2020-02-25T09:17:00Z", "id": "5d5c6bd764b248349ae2d3d3075ed735", "tenant": + {"description": "", "enabled": true, "id": "6152fef686644e46820e3d266fc8a5ce", + "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["iiXrCyhDQamoQLxXPr6a_A"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/2db86326708a44629d0a27103e6daa04"}], + [{"adminURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/2db86326708a44629d0a27103e6daa04"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/2db86326708a44629d0a27103e6daa04"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_2db86326708a44629d0a27103e6daa04"}], + "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_6152fef686644e46820e3d266fc8a5ce"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:00 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens body: encoding: UTF-8 - string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project2"}}' + string: '{"auth":{"passwordCredentials":{"username":"admin","password":"password_2WpEraURh"},"tenantName":"EmsRefreshSpec-Project-No-Admin-Role"}}' headers: User-Agent: - fog-core/1.45.0 @@ -930,69 +930,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:17:00 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-cd2b998a-9c51-40c7-b6c2-bd03f4967b10 + - req-e54659cb-d0b1-42b4-8846-f1870d03cbfd Content-Length: - - '4148' + - '4101' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.667099", "expires": - "2020-01-14T14:27:33Z", "id": "231bbdbd1bad4030b1279eb86d91b022", "tenant": - {"description": "", "enabled": true, "id": "56ac37685be246aba905e0301d595693", - "name": "EmsRefreshSpec-Project2"}, "audit_ids": ["og0Q6JMDRgKetZXO83C03g"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/56ac37685be246aba905e0301d595693"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:01.037299", "expires": + "2020-02-25T09:17:01Z", "id": "ef7f51fef56f4db4ad09308298f1930a", "tenant": + {"description": "", "enabled": true, "id": "dadaba8276f24d6eb2526ffa43cd4e33", + "name": "EmsRefreshSpec-Project-No-Admin-Role"}, "audit_ids": ["cxHmrbtNRuis4c0oa7cOXA"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/56ac37685be246aba905e0301d595693"}], + [{"adminURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/56ac37685be246aba905e0301d595693"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/56ac37685be246aba905e0301d595693"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_56ac37685be246aba905e0301d595693"}], + "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_dadaba8276f24d6eb2526ffa43cd4e33"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:01 GMT - request: method: post uri: http://11.22.33.44:5000/v2.0/tokens @@ -1010,69 +1010,69 @@ http_interactions: message: OK headers: Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:17:02 GMT Server: - Apache/2.4.6 (Red Hat Enterprise Linux) Vary: - X-Auth-Token,Accept-Encoding X-Openstack-Request-Id: - - req-1c110836-7fe4-45b8-998c-5e849b8106c5 + - req-68b898e4-af92-43e0-b5e6-bddc995921de Content-Length: - - '4147' + - '4087' Connection: - close Content-Type: - application/json body: encoding: ASCII-8BIT - string: '{"access": {"token": {"issued_at": "2020-01-14T13:27:33.770356", "expires": - "2020-01-14T14:27:33Z", "id": "c94c1770e4a14da8b59804fe050a6773", "tenant": - {"description": "", "enabled": true, "id": "8eb4b49207904f6eb33283732571bc0e", - "name": "EmsRefreshSpec-Project"}, "audit_ids": ["wG1wiXC7SNqQonAe5Gq7Tg"]}, - "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "5e6eae9d17494505ba61dfa30227ec7d", "publicURL": "http://11.22.33.44:8774/v2/8eb4b49207904f6eb33283732571bc0e"}], + string: '{"access": {"token": {"issued_at": "2020-02-25T08:17:02.104433", "expires": + "2020-02-25T09:17:02Z", "id": "c7ff85faca0341f59ed09d76d3b78a39", "tenant": + {"description": "", "enabled": true, "id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "name": "EmsRefreshSpec-Project"}, "audit_ids": ["t7TpsOkbTjeC3HYKoGnDIw"]}, + "serviceCatalog": [{"endpoints": [{"adminURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "c6ddd129855c4e93b1f61359573fb28d", "publicURL": "http://11.22.33.44:8774/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "compute", "name": "nova"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9696", "region": "RegionOne", "internalURL": "http://11.22.33.44:9696", - "id": "8d03b4e7198f41f6b6e38aeaa32a3095", "publicURL": "http://11.22.33.44:9696"}], + "id": "078b7442d6e140c1ad23273a1aa85add", "publicURL": "http://11.22.33.44:9696"}], "endpoints_links": [], "type": "network", "name": "neutron"}, {"endpoints": - [{"adminURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e", - "id": "40779a9f503a4fef8b1c0138f88b7141", "publicURL": "http://11.22.33.44:8776/v2/8eb4b49207904f6eb33283732571bc0e"}], + [{"adminURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "841a6774297241b88c4f532c9d44aca0", "publicURL": "http://11.22.33.44:8776/v2/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volumev2", "name": "cinderv2"}, {"endpoints": [{"adminURL": "http://127.0.0.1:8774/v3", "region": "RegionOne", "internalURL": - "http://127.0.0.1:8774/v3", "id": "2b9be6771e6241e4b023d4cf70b8ffca", "publicURL": + "http://127.0.0.1:8774/v3", "id": "55dbcd5bd7df41f0a2f00798dcb5c062", "publicURL": "http://127.0.0.1:8774/v3"}], "endpoints_links": [], "type": "computev3", - "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", - "region": "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "329b550386614fdcacca82372357e900", - "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": - "image", "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "708372da4d0646908af1dab17efc743a", - "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": - "metering", "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "406b6c11b40c4bc0a2f72eb583ef0e81", "publicURL": "http://11.22.33.44:8776/v1/8eb4b49207904f6eb33283732571bc0e"}], + "name": "novav3"}, {"endpoints": [{"adminURL": "http://11.22.33.44:9292", "region": + "RegionOne", "internalURL": "http://11.22.33.44:9292", "id": "03233bd941564fc4850df2810bc623e0", + "publicURL": "http://11.22.33.44:9292"}], "endpoints_links": [], "type": "image", + "name": "glance"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8777", "region": + "RegionOne", "internalURL": "http://11.22.33.44:8777", "id": "56f34756676d43ebabc0cfccbe3a4456", + "publicURL": "http://11.22.33.44:8777"}], "endpoints_links": [], "type": "metering", + "name": "ceilometer"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "a12b632633fe4f49b810c48b9c03707d", "publicURL": "http://11.22.33.44:8776/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "volume", "name": "cinder"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8773/services/Admin", "region": "RegionOne", - "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "7fe7b6f0c1fc42b5b36361a2dbb655e2", + "internalURL": "http://11.22.33.44:8773/services/Cloud", "id": "2a020ac326c24a7fbadd31b248052d67", "publicURL": "http://11.22.33.44:8773/services/Cloud"}], "endpoints_links": - [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e", - "id": "785f5e93c8eb41489e5cad9d125fa087", "publicURL": "http://11.22.33.44:8004/v1/8eb4b49207904f6eb33283732571bc0e"}], + [], "type": "ec2", "name": "nova_ec2"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "region": "RegionOne", "internalURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9", + "id": "45fb2495679049d0a5605a728905def2", "publicURL": "http://11.22.33.44:8004/v1/e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "orchestration", "name": "heat"}, {"endpoints": [{"adminURL": "http://11.22.33.44:8080", "region": "RegionOne", "internalURL": - "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e", "id": - "27d5b72e34a5483f8db6ce853a8bb1fd", "publicURL": "http://11.22.33.44:8080/v1/AUTH_8eb4b49207904f6eb33283732571bc0e"}], + "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9", "id": "10a48064622c4d57ad388ae1ccc7a42e", + "publicURL": "http://11.22.33.44:8080/v1/AUTH_e9bb9a5ed00244e0b3c288ed495abbf9"}], "endpoints_links": [], "type": "object-store", "name": "swift"}, {"endpoints": [{"adminURL": "http://11.22.33.44:35357/v2.0", "region": "RegionOne", "internalURL": - "http://11.22.33.44:5000/v2.0", "id": "157ac8b75f934ea989cb3c4e741c87bd", - "publicURL": "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": - "identity", "name": "keystone"}], "user": {"username": "admin", "roles_links": - [], "id": "429846f1f4c9494dab287d7d4554e465", "roles": [{"name": "admin"}, - {"name": "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": - 0, "roles": ["4e0b5e7d30a34af8ab45e4d19d94a434", "72ccf1c591c54d2b8d1e5cee16e72a2c"]}}}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "http://11.22.33.44:5000/v2.0", "id": "4732cf40577541efa0a0b3da912c00bb", "publicURL": + "http://11.22.33.44:5000/v2.0"}], "endpoints_links": [], "type": "identity", + "name": "keystone"}], "user": {"username": "admin", "roles_links": [], "id": + "27847c2f160f4bdc8b6a67fc5948c71d", "roles": [{"name": "admin"}, {"name": + "heat_stack_owner"}], "name": "admin"}, "metadata": {"is_admin": 0, "roles": + ["bdd08142248f4993bf1c93f0278a6e1f", "3b7c6b4d444449209665610af83167bf"]}}}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:02 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1087,7 +1087,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 57bceb7c4d524c7aa86ff35cd87c7020 + - ffd61306002344ff97e38b2ffdb13c5d response: status: code: 200 @@ -1098,116 +1098,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-738245a2-b1d5-44b7-b60b-eb8bb8cc9ff4 + - req-bc94328d-3e15-4593-a884-f4cc0b0c8ab8 Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:17:03 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:04 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1219,7 +1219,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 57bceb7c4d524c7aa86ff35cd87c7020 + - ffd61306002344ff97e38b2ffdb13c5d response: status: code: 200 @@ -1230,113 +1230,112 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-f9a6f048-a2a5-4e20-956f-e48404712245 + - req-877c5372-4a23-430c-b1a7-e22ff35e475b Date: - - Tue, 14 Jan 2020 13:27:33 GMT + - Tue, 25 Feb 2020 08:17:05 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:33 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:06 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1351,7 +1350,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 231bbdbd1bad4030b1279eb86d91b022 + - 5d5c6bd764b248349ae2d3d3075ed735 response: status: code: 200 @@ -1362,116 +1361,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-0953afba-1245-41a6-831a-3e2dc6958f3a + - req-1a62b987-453c-4a5a-9941-e6be859adbdb Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:06 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:07 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1483,7 +1482,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - 231bbdbd1bad4030b1279eb86d91b022 + - 5d5c6bd764b248349ae2d3d3075ed735 response: status: code: 200 @@ -1494,113 +1493,113 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-a2e21e1a-8b2b-45a8-9297-150e8b1cbefc + - req-744cadf8-0f80-48ff-9aab-64ece1b4ee9f Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:07 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:08 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1615,7 +1614,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fae578cc734c44339c24df117726d038 + - ef7f51fef56f4db4ad09308298f1930a response: status: code: 200 @@ -1626,116 +1625,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-bb0ea3c9-b1b1-42cb-a112-e4576e676642 + - req-bfbb779c-5d81-4507-aab9-4efc2e029793 Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:08 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", - "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": + false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": + "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": - null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], + "192.168.0.3", "end": "192.168.0.5"}, {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT + "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], + "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": + "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", "id": "28f725f2-026f-4647-8b74-2048baac2063", + "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:09 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -1747,7 +1746,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - fae578cc734c44339c24df117726d038 + - ef7f51fef56f4db4ad09308298f1930a response: status: code: 200 @@ -1758,113 +1757,112 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-78ad8413-5bc4-4656-826b-7e55f69a9bf7 + - req-4951cc62-8ba4-4ddf-8a74-4854212c14e4 Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:10 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:10 GMT - request: method: get uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000 @@ -1879,7 +1877,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c94c1770e4a14da8b59804fe050a6773 + - c7ff85faca0341f59ed09d76d3b78a39 response: status: code: 200 @@ -1890,116 +1888,116 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-38ad69c7-ef4d-47dd-adb0-43b25982921f + - req-4fd9a4b5-49fb-49cc-a4d6-1acbcc15a99e Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:11 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": + "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", + "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", + "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.2.0/24", "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": + false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.19.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", "end": + "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": - "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.50.1", + "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": + "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:12 GMT - request: method: get - uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=aa3be045-833a-4a11-9c63-3d9fc3ee0322 + uri: http://11.22.33.44:9696/v2.0/subnets?limit=1000&marker=28f725f2-026f-4647-8b74-2048baac2063 body: encoding: US-ASCII string: '' @@ -2011,7 +2009,7 @@ http_interactions: Accept: - application/json X-Auth-Token: - - c94c1770e4a14da8b59804fe050a6773 + - c7ff85faca0341f59ed09d76d3b78a39 response: status: code: 200 @@ -2022,111 +2020,110 @@ http_interactions: Content-Length: - '8299' X-Openstack-Request-Id: - - req-7bcf0271-2d9a-4921-8ccb-19cb1398a78b + - req-59deca8e-cbc1-4705-8cea-33598acd1038 Date: - - Tue, 14 Jan 2020 13:27:34 GMT + - Tue, 25 Feb 2020 08:17:12 GMT body: encoding: ASCII-8BIT - string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + string: '{"subnets": [{"name": "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": + true, "network_id": "873c1069-e420-4178-a77c-99fc2c905605", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.2.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.2.2", "end": "192.168.2.254"}], "host_routes": + [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.2.0/24", + "id": "a6f12ba3-3567-400f-a9ce-6bb4e135f1f3", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "011d9094-281d-4ad2-8fc4-1b1b72d0a366", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", + "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.19.0/24", "id": "273e0170-431e-4f44-a266-7c4d3683ffe8", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_31", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.31.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.31.2", "end": "192.168.31.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.31.0/24", - "id": "d0de16b8-ead6-4b12-b206-9488d1af8d74", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "402c76d3-c791-4401-8112-57c026e4c1ee", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "f0ba8818-dc0d-4683-9af5-e1c83e92df5f", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-IsolatedSubnetPrivate_1", "enable_dhcp": true, "network_id": + "a27c5012-ab85-4635-8266-e6d0cf7e3e96", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.40.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.40.2", "end": "192.168.40.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.40.0/24", + "id": "a5e56f5e-f3cf-4224-aaba-71792b317537", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_10", "enable_dhcp": false, "network_id": "04986f78-85a9-4bb1-85a7-54e13a73e8f3", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.18.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.18.2", "end": "172.16.18.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.18.0/24", "id": "96f0bd23-c9f1-4e58-811a-5da42a552272", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": - false, "network_id": "50426539-7226-4a52-895a-dd8af97779d9", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.20.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", "end": - "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.20.0/24", "id": "c9a2a941-2b1a-406e-9d91-fe9a9864b993", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", - "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.51.0/24", "id": "8ca156a0-7ec2-4981-96c6-6499214413cf", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": - true, "network_id": "e1e0e7ec-b76d-45de-a364-3973d92f94de", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", - "id": "a7c496e0-a265-444d-bfda-ec21eb7dcfc4", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_2", "enable_dhcp": true, "network_id": "69cb1185-0d2b-4afd-9eb5-3196d69cc38b", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.2.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.2.2", - "end": "192.168.2.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.2.0/24", "id": "6b1dade5-4d5e-4ccc-ae57-0ca3222a443c", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", - "enable_dhcp": true, "network_id": "678bb925-5f9c-4718-874c-ac592109544c", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.2", - "end": "192.168.50.2"}, {"start": "192.168.50.4", "end": "192.168.50.4"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", - "id": "e8f60a28-d3f0-4209-90a4-d7b4935c3ef3", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPublic_20", "enable_dhcp": false, "network_id": "22890e2d-bd2d-4c2b-a2ff-d7292d91f2f0", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "172.16.19.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.19.21", - "end": "172.16.19.23"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.19.0/24", "id": "a51f963b-93a5-4892-a9d5-21a32b2e7941", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.50.1", - "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", "end": - "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.50.0/24", "id": "668a8b0d-7300-48e1-be97-db0174c341e2", + null, "cidr": "172.16.18.0/24", "id": "12ec8daa-a53e-4da1-b1cd-659e80cb7584", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": + true, "network_id": "7254bb18-40e8-4dd0-a8c1-e6822a6c7fb0", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": + "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, + "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "dd0f4830-f0e0-49f8-a041-dc7ce7abaa78", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic", "enable_dhcp": - false, "network_id": "23d9a208-6033-4b22-9b05-2d308ecc35fa", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.17.1", + false, "network_id": "9e975de8-88ba-483b-9152-caa1ae01d111", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.17.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.17.11", "end": "172.16.17.19"}, {"start": "172.16.17.2", "end": "172.16.17.9"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "172.16.17.0/24", - "id": "9ea140e7-4721-4721-ab36-56f2884965bc", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "b5534a7f-dc82-4ab0-8657-46eb88dc2f7a", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": + "id": "97f11bb2-f26f-472f-9463-33c62587b97d", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPrivate_20", "enable_dhcp": true, "network_id": "342b6359-7c2b-492c-ac17-cd0c33e210db", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "192.168.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.20.2", "end": "192.168.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.20.0/24", "id": "544ac21e-718b-425a-8fe9-2a3f19cdeb1d", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_3", "enable_dhcp": - true, "network_id": "f98ccbcc-781f-4890-8155-a8d1ab24d5ba", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", - "dns_nameservers": [], "gateway_ip": "192.168.3.1", "ipv6_ra_mode": null, - "allocation_pools": [{"start": "192.168.3.2", "end": "192.168.3.6"}, {"start": - "192.168.3.8", "end": "192.168.3.10"}], "host_routes": [], "ip_version": 4, - "ipv6_address_mode": null, "cidr": "192.168.3.0/24", "id": "e584057e-f15d-4038-82d2-b5ec77234adc", + null, "cidr": "192.168.20.0/24", "id": "063860da-16bf-4e80-9e03-8ba23bb78303", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_30", "enable_dhcp": + true, "network_id": "f69cdf31-0d52-4a13-9020-23c29e490cba", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": [], "gateway_ip": "192.168.30.1", "ipv6_ra_mode": null, + "allocation_pools": [{"start": "192.168.30.2", "end": "192.168.30.254"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.30.0/24", + "id": "ce72639b-dceb-492d-8e28-5bdc1618b0a8", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_30", "enable_dhcp": false, "network_id": "e4be0441-bfd3-4db1-81e7-02b905baf532", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.20.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.20.2", + "end": "172.16.20.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.20.0/24", "id": "8b258afd-ddbb-410e-af5f-c8b6f087f782", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_21", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.51.2", + "end": "192.168.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "192.168.51.0/24", "id": "c8352f93-6a4d-4bd6-9e08-f9ab0cf62b47", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_51", "enable_dhcp": - false, "network_id": "9fbb4ac7-7db3-486b-8524-340b65175c40", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.51.1", + false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.51.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.51.2", "end": "172.16.51.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.51.0/24", "id": "201313ab-c7f4-41bf-8aea-56fdeececfc9", - "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_1", - "enable_dhcp": true, "network_id": "2e7b7306-55a0-446b-bf70-eaa9d1a6ebd8", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": - "192.168.40.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.40.2", - "end": "192.168.40.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "192.168.40.0/24", "id": "9b51a47a-9ec4-4725-a1bc-7b3165d5375e", + null, "cidr": "172.16.51.0/24", "id": "7b45c59c-55b9-46be-aea0-b5bdc85a5fb2", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-IsolatedSubnetPrivate_2", + "enable_dhcp": true, "network_id": "465f0bf7-a827-428b-9f1f-14b01088bbfc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "192.168.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.50.4", + "end": "192.168.50.4"}, {"start": "192.168.50.2", "end": "192.168.50.2"}], + "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.50.0/24", + "id": "fda5bdbf-cb71-4322-96e1-5b3a40fb1a74", "subnetpool_id": null}, {"name": + "EmsRefreshSpec-SubnetPublic_50", "enable_dhcp": false, "network_id": "001da51b-0a0f-4a49-b2a4-313cc0c8e3bc", + "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": + "172.16.50.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.50.2", + "end": "172.16.50.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": + null, "cidr": "172.16.50.0/24", "id": "b203d38f-01ad-48a3-84fa-0490239b0995", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPublic_40", "enable_dhcp": - false, "network_id": "c9e08b55-0f84-44e0-a3eb-7af72b124433", "tenant_id": - "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": [], "gateway_ip": "172.16.21.1", + false, "network_id": "7bee8b41-1770-41ed-b2e8-7d58f6aa50a2", "tenant_id": + "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": [], "gateway_ip": "172.16.21.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "172.16.21.2", "end": "172.16.21.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": - null, "cidr": "172.16.21.0/24", "id": "159bd606-50a7-4e16-932a-4ae80ed58efc", + null, "cidr": "172.16.21.0/24", "id": "5d12d78d-20e2-4240-845f-cb2bb1b5c51a", + "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", + "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.0.1", "ipv6_ra_mode": + null, "allocation_pools": [{"start": "192.168.0.3", "end": "192.168.0.5"}, + {"start": "192.168.0.8", "end": "192.168.0.8"}], "host_routes": [], "ip_version": + 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", "id": "884c2ac4-a7a2-41c9-bd5f-599c099ca823", "subnetpool_id": null}, {"name": "EmsRefreshSpec-SubnetPrivate_12", "enable_dhcp": - true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", "tenant_id": "8eb4b49207904f6eb33283732571bc0e", + true, "network_id": "fe1373d6-962e-4439-8782-5997d874ca98", "tenant_id": "e9bb9a5ed00244e0b3c288ed495abbf9", "dns_nameservers": ["8.8.8.8"], "gateway_ip": "192.168.1.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": "192.168.1.2", "end": "192.168.1.254"}], "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.1.0/24", - "id": "be64e82a-7735-4ae3-a390-b0fb6441c184", "subnetpool_id": null}, {"name": - "EmsRefreshSpec-SubnetPrivate", "enable_dhcp": true, "network_id": "fd0c1994-4cee-42b6-b379-cc3d29bd32b4", - "tenant_id": "8eb4b49207904f6eb33283732571bc0e", "dns_nameservers": ["8.8.8.8"], - "gateway_ip": "192.168.0.1", "ipv6_ra_mode": null, "allocation_pools": [{"start": - "192.168.0.8", "end": "192.168.0.8"}, {"start": "192.168.0.3", "end": "192.168.0.5"}], - "host_routes": [], "ip_version": 4, "ipv6_address_mode": null, "cidr": "192.168.0.0/24", - "id": "aa3be045-833a-4a11-9c63-3d9fc3ee0322", "subnetpool_id": null}]}' - http_version: - recorded_at: Tue, 14 Jan 2020 13:27:34 GMT -recorded_with: VCR 5.0.0 + "id": "28f725f2-026f-4647-8b74-2048baac2063", "subnetpool_id": null}]}' + http_version: null + recorded_at: Tue, 25 Feb 2020 08:17:13 GMT +recorded_with: VCR 5.1.0